Skip to content

Instantly share code, notes, and snippets.

<script type="text/javascript" charset="utf-8">
(function(){
var _w = 72 , _h = 16;
var param = {
url:location.href,
type:'3',
count:'1',
appkey:'',
title:'',
pic:'',
@bsalim
bsalim / php speed up tips.html
Created January 3, 2013 09:09
63 Tips for speeding up PHP
<html>
<body>
<p>Here are Webber’s points:</p>
<ul>
<li>If a method can be static, declare it static. Speed improvement is by a factor of 4.</li>
<li>echo is faster than print.(<em>* compare with list from phplens by John Lim</em>)</li>
<li>Use echo’s multiple parameters instead of string concatenation.</li>
<li>Set the maxvalue for your for-loops before and not in the loop.</li>
<li>Unset your variables to free memory, especially large arrays.</li>
<li>Avoid magic like __get, __set, __autoload</li>
<?php
class CyberSource {
const ENV_TEST = 'https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.67.wsdl';
const ENV_PRODUCTION = 'https://ics2ws.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.67.wsdl';
const VERSION = '0.2';
const API_VERSION = '1.67';
/**
*
* @var string The URL to the WSDL endpoint for the environment we're
<?php
/**
* Format date using PHP DateTime Object
**/
function format_date_from_mysql($date,$newformatted='M d, Y')
{
return DateTime::createFromFormat("Y-m-d H:i:s", $date)->format($newformatted);
}
/**