📄 test.php
字号:
<!--////////////////////////////////////////////////////////////////////////////////// ADOBE SYSTEMS INCORPORATED// Copyright 2007 Adobe Systems Incorporated// All Rights Reserved.//// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the // terms of the Adobe license agreement accompanying it. If you have received this file from a // source other than Adobe, then your use, modification, or distribution of it requires the prior // written permission of Adobe.////////////////////////////////////////////////////////////////////////////////--><html> <head> <title>PHP Test</title> </head> <body> <?php $today = date("D M d Y, h:i a"); echo "Current date and time is: $today\n<br>"; srand(time()); $random = (rand()%9); echo "Random number between 0 and 9 is: $random\n<br>"; ?> </body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -