Skip to content

Instantly share code, notes, and snippets.

View fatihgune's full-sized avatar
🔆

Fatih Güneş fatihgune

🔆
View GitHub Profile
@fatihgune
fatihgune / write_contents_as_php_array_into_file.php
Last active September 16, 2023 16:40
Write data into file in php array format
<?php
if (!function_exists('write_contents_as_php_array_into_file')) {
/**
* Writes the contents of given string/object/array to the file in php array format.
*
* @param mixed $contents
* @param bool $die
* @return string
*/
@dtomasi
dtomasi / default
Last active February 17, 2025 02:27
Brew Nginx PHP7
server {
listen 80;
server_name localhost;
root /Users/YOUR_USERNAME/Sites;
access_log /Library/Logs/default.access.log main;
location / {
include /usr/local/etc/nginx/conf.d/php-fpm;
}