If you are using a version of php7 or higher, this will not affect the warning. You should put the program in the xampp installation directory in a directory beginning with h, then go to 127.0.0.1/hello
0 Answer
If you are using a version of php7 or higher, this will not affect the warning. You should put the program in the xampp installation directory in a directory beginning with h, then go to 127.0.0.1/hello
// 你可以这样输出它
$helloworld = new HelloWorld();
echo $helloworld->index();
public function index() : string {
return "index234";
}
This answer quotes ChatGPT
Please test this code
namespace app\controller;
class HelloWorld {
public function index() {
return 'index234';
}
}
这家伙很懒,什么都没留下...