TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
165 B

--TEST--
any
--FILE--
<?php
$s = 12345678;
var_dump(strlen($s));
var_dump(strrev($s));
var_dump(strlen(3.1415926));
?>
--EXPECT--
int(8)
string(8) "87654321"
int(9)