我用bitnami创建了Google虚拟机实例,以启动PHP、MySQL和apache。
我已经允许防火墙在8086端口谷歌云平台。
我创建了两个文件:
server.php,这是
- stored in google cloud
- create server socket on port 8086
- run using SSH with PHP-CLI
- socket is binding and listening to port 8086 successfully
client.php,这是
- stored in my local PC
-
下面有一个php类。
<?php
class t extends c{
function __construct() {
parent::__construct();
}
}
class c extends d{
function __construct() {
parent::__construct();
}
}
class d {
function __construct() {
echo "worked";
}
}
new t();
?>
上面的类在我的本地