Last active
June 5, 2017 07:51
-
-
Save jjjjcccjjf/03c97bf0acd384200d0bd1cf6c92bb0a to your computer and use it in GitHub Desktop.
php file write
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# Generate file | |
$your_data = array(); | |
$path = "/var/www/html/"; | |
$fp = fopen($path."arrayDetails.txt", "a"); | |
fwrite($fp, print_r($arrayInfo,true)); | |
fclose($fp); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment