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 | |
$default_settings = array('page'=>3, 'per_page'=>100); | |
$user_override = array('per_page'=>50, 'format'=>'json'); | |
$overriden_setting = $user_override + $default_settings; | |
print_r($overriden_setting); | |
?> |
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
Array | |
( | |
[0] => apples | |
[1] => oranges | |
[2] => bananas | |
[3] => mangoes | |
) |
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 | |
$fruits = array('apples', 'oranges'); | |
$more_fruits = array('bananas', 'mangoes'); | |
$all_fruits = array_merge($fruits, $more_fruits); | |
print_r($all_fruits); | |
?> |
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 | |
define('SHOPIFY_APP_SECRET', 'my_shared_secret'); | |
function verify_webhook($data, $hmac_header) | |
{ | |
$calculated_hmac = base64_encode(hash_hmac('sha256', $data, SHOPIFY_APP_SECRET, true)); | |
return ($hmac_header == $calculated_hmac); | |
} |
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
javascript:(function(){var l='http://www.tumblr.com/share?v=3&u='+encodeURIComponent(location.href)+'&t='+document.title;w=open(l,'w','location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=400,modal=yes,dependent=yes');if(w){setTimeout('w.focus()',1000)}else{location=l}})(); |
NewerOlder