📄 05c00-1.php
字号:
<?php// Create an array of all possible PHP types$alltypes = array( 'integer' => 1, 'float' => -12.353, 'string' => 'string value here', 'array' => array('elements', 'of', 'another', 'array'), 'resource' => fopen('file.txt', 'w'), 'object' => dir('.'), 'function' => create_function('', 'echo "Hello, world!\n";'));// Echo this out:echo '<pre>';print_r($alltypes);echo '</pre>';?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -