touch -- Sets access and modification time of file
file_exists -- Checks whether a file exists
意思是
文件是否存在或者設置文件的訪問修改時間為當前時間是否成功

解决方案 »

  1.   

    file_exists() and touch must be are functions.
    || means "or".so it means if ether function return a true value.the expression must be true
      

  2.   

    语句的意思是:判断文件$fn是否存在,如果不存在则新建文件$fn相关的命令:
    int touch(string filename , int time)
    设置文件filename的最后修改时间time,如果time没给出,系统使用当前时间,如果filename不存在,将新建该文件,返回值为ture/falseint file_exists(string filename)
    检验文件filename是否存在,其中filename包括目录路径和文件名和文件后缀,返回值为ture/false