|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-03-23 07:17 UTC] cynic at mail dot cz
NOTE: this is actually a snapshot from yesterday. signle space is appended to each and every returned function name, this affects both internals and userland ones. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 10:00:02 2025 UTC |
turned out it's not a whitespace, it's null: $x = get_defined_functions() ; $x = array_shift( $x['internal'] ) ; for( $i = 0 ; $i < strlen( $x ) ; $i++ ) { echo $x[ $i ] , ' : ' , ord( $x[ $i ] ) , "\n" ; } z : 122 e : 101 n : 110 d : 100 _ : 95 v : 118 e : 101 r : 114 s : 115 i : 105 o : 111 n : 110 : 0