无法使用PHP代码创建文件

时间:2018-06-14 17:51:02

标签: php

在000webhost.com服务器上

这是代码

<?php
$my_file = fopen("my_test.txt", 'w');

fclose($my_file );

我感谢那些提前帮助我的人

1 个答案:

答案 0 :(得分:1)

使用chmod功能 http://it2.php.net/function.chmod

GameObject[] cores;
GameObject closest_core = null;
cores = GameObject.FindGameObjectsWithTag ("bldg_core");

if (cores.Length != 1)
    for (int x = 0; x < cores.Length - 1; x++) 
    {
        if (distanceToPlayer (cores[x + 1]) < distanceToPlayer (cores[x]))
            closest_core = cores [x + 1];
    }

注意*如果您需要在文件

中输入一些数据,则fwrite在您的情况下是可选的