$file = fopen($filename, 'r') or exit("unable to open file ($filename)");
只读模式打开$filename,如果失败,程序结束并提示无法打开(unable to open file)!function_exists('readover') && exit('Forbidden');
如果函数readover不存在,程序结束并提示forbidden用or或||做语句连接,前者返回false时执行or后面的语句.
用and或&&做语句连接,前者返回true时执行and后面的语句.