tomfmason Posted July 10, 2006 Share Posted July 10, 2006 I have tried to open a zone file but I keep getting the error [code]Parse error: parse error, unexpected T_STRING in test_open.php on line 3[/code]here is the simple fopen() script[code=php:0]<?php$filename ="mysite.com.zone"fopen("C:\\windows\\system32\\dns\\etc\\$filename", "r")?>[/code]In this example I am just trying to open the zone file with the read permissions.Also, which would be the best way to reload bind in a windows environment? Would that be some sort of socket or? Quote Link to comment https://forums.phpfreaks.com/topic/14174-how-to-open-and-write-to-a-zone-file/ Share on other sites More sharing options...
Daniel0 Posted July 10, 2006 Share Posted July 10, 2006 Use this: [code]<?php$filename ="mysite.com.zone";$file = "C:\\windows\\system32\\dns\\etc\\$filename";$fp = fopen($file, "r");$contents = fread($fp,filesize($file));fclose($fp);?>[/code] or this: [code]<?php$filename ="mysite.com.zone";$contents = file_get_contents("C:\\windows\\system32\\dns\\etc\\$filename");?>[/code] to get the contents of the file. Quote Link to comment https://forums.phpfreaks.com/topic/14174-how-to-open-and-write-to-a-zone-file/#findComment-55564 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.