| Revision 20119,
329 bytes
checked in by nanasess, 15 years ago
(diff) |
|
module 以下は svn:keywords を除外
|
-
Property svn:eol-style set to
LF
|
| Line | |
|---|
| 1 | --TEST-- |
|---|
| 2 | Function -- vsprintf |
|---|
| 3 | --SKIPIF-- |
|---|
| 4 | <?php if (function_exists('vsprintf')) { echo 'skip'; } ?> |
|---|
| 5 | --FILE-- |
|---|
| 6 | <?php |
|---|
| 7 | require_once 'PHP/Compat.php'; |
|---|
| 8 | PHP_Compat::loadFunction('vsprintf'); |
|---|
| 9 | |
|---|
| 10 | $values = array (2, 'car'); |
|---|
| 11 | |
|---|
| 12 | $format = "There are %d monkeys in the %s"; |
|---|
| 13 | vprintf($format, $values); |
|---|
| 14 | ?> |
|---|
| 15 | --EXPECT-- |
|---|
| 16 | There are 2 monkeys in the car |
|---|
Note: See
TracBrowser
for help on using the repository browser.