Skip to content

Instantly share code, notes, and snippets.

@paugustyn-cbsi
Last active July 19, 2021 20:01
Show Gist options
  • Select an option

  • Save paugustyn-cbsi/171176845be1a2e575b4fa6bb21f8252 to your computer and use it in GitHub Desktop.

Select an option

Save paugustyn-cbsi/171176845be1a2e575b4fa6bb21f8252 to your computer and use it in GitHub Desktop.
php syntax suger

Assigning with list

 list('field' => $field_name,
                'value' => $field_value,
                'reject' => $reject) = $r;

Iterating through array with index

foreach ($audio_list as $key => $audio_item) {
}

print phpinfo from cli

php -c /etc/php/apache2/php.ini -i 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment