From: Mark Slee Date: Wed, 21 Mar 2007 06:53:03 +0000 (+0000) Subject: Missed an include line in sample code X-Git-Tag: 0.2.0~1408 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=a821cfd39f077e5372260ba1bcf7365754a76167;p=common%2Fthrift.git Missed an include line in sample code git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665064 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/php/README.apache b/lib/php/README.apache index 04362c21..3ddce304 100644 --- a/lib/php/README.apache +++ b/lib/php/README.apache @@ -24,8 +24,9 @@ Sample Code * @author Mark Slee */ -$GLOBALS['THRIFT_ROOT'] = '/your/thrift/root/'; +$GLOBALS['THRIFT_ROOT'] = '/your/thrift/root'; +include_once $GLOBALS['THRIFT_ROOT'].'/Thrift.php'; include_once $GLOBALS['THRIFT_ROOT'].'/packages/Service/Service.php'; include_once $GLOBALS['THRIFT_ROOT'].'/transport/TPhpStream.php'; include_once $GLOBALS['THRIFT_ROOT'].'/protocol/TBinaryProtocol.php';