SAE平台fwrite,file_put_contents等函数写操作

在SAE开放平台上虽然禁止了IO写操作,但是并没有禁止fwrite,file_put_contents等写操作函数,同时SAE还提供了Wrappers服务,这使得移植程序也比较简单。 假设我们要将下面的代码移植到SAE上。


        file_put_contents('test.php',''); 
        include 'test.php';
    ?>
        只需要给文件地址加上前缀就可以了
        file_put_contents('saemc://test.php',''); 
        include 'saemc://test.php';
    ?>

        如果地址的前缀为saemc://表示在Memcache中进行读写操作,如果前缀为saestor://表示在Storage中进行读写操作。前缀为saekv://就是对KVDB的操作。这就是Wrappers的功能。

你可能感兴趣的:(PHP)