(PHP 4 >= 4.1.0, PHP 5, PHP 7)
vsprintf — ���ظ�ʽ���ַ���
$format
, array $args
) : string������ sprintf() �������ƣ����ǽ���һ�����������������һϵ�пɱ������IJ�����
���� format
��sprintf() �����ĵ������������������ָ���ĸ�ʽ����һ���ַ����з���һϵ��ֵ��
Example #1 vsprintf(): ǰ�� 0 ������
<?php
print vsprintf("%04d-%02d-%02d", explode('-', '1988-8-1')); // 1988-08-01
?>