1
0
Fork 0

update decompile sample

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1373 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.1
Xuefer 2013-09-16 15:07:37 +00:00
parent c214a532db
commit 0158af3733
1 changed files with 4 additions and 1 deletions

View File

@ -30,12 +30,15 @@ abstract class ClassName
1 => 'str',
CONST_VALUE => CONST_VALUE
);
static public $static2 = array(self::CONST_VALUE => self::CONST_VALUE);
/** doc */
static public $public_static = array(2, 'str');
/** doc */
static private $private_static = array(2, 'str');
static private $private_static2 = array(self::CONST_VALUE => self::CONST_VALUE);
/** doc */
static protected $protected_static = array(2, 'str');
static protected $protected_static2 = array(self::CONST_VALUE => self::CONST_VALUE);
/** doc */
public $property = array(
array('array'),
@ -576,7 +579,7 @@ echo preg_replace_callback('~-([a-z])~', function($match) {
return strtoupper($match[1]);
}, 'hello-world');
$greet = function($name) {
printf("Hello %s\r\n", $name);
printf('Hello %s' . "\r\n" . '', $name);
};
$greet('World');
$greet('PHP');