PHP 8.5.0 Alpha 4 available for testing

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

eep2004 at ukr dot net
11 years ago
<?php
// strtok example
$str = 'Hello to all of Ukraine';
echo
strtok($str, ' ').' '.strtok(' ').' '.strtok(' ');
?>
Result:
Hello to all

<< Back to user notes page

To Top