<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>waimv.com &#187; php</title>
	<atom:link href="http://www.waimv.com/tag/php-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.waimv.com</link>
	<description></description>
	<lastBuildDate>Fri, 09 Nov 2018 10:41:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>c java php 语言性能对比</title>
		<link>http://www.waimv.com/php/278/</link>
		<comments>http://www.waimv.com/php/278/#comments</comments>
		<pubDate>Mon, 19 Aug 2013 07:37:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=278</guid>
		<description><![CDATA[同一台服务器测试 C      0.04 秒 Java   0.21 秒 PHP  2.06  秒 由此可算出 C 是 java性能的5倍，Java 是 PHP 性能的10倍 C #include &#60;stdio.h&#62; #include &#60;sys/time.h&#62; #define BAILOUT 16 #define MAX_ITERATIONS 1000 int mandelbrot(double x, double y) { double cr = y - 0.5; double ci = x; double zi = 0.0; double zr = 0.0; [...]]]></description>
			<content:encoded><![CDATA[<p>同一台服务器测试</p>
<p>C      0.04 秒</p>
<p>Java   0.21 秒</p>
<p>PHP  2.06  秒</p>
<p>由此可算出 C 是 java性能的5倍，Java 是 PHP 性能的10倍</p>
<p><strong>C</strong></p>
<pre class="brush: cpp">#include &lt;stdio.h&gt;
#include &lt;sys/time.h&gt;

#define BAILOUT 16
#define MAX_ITERATIONS 1000

int mandelbrot(double x, double y)
{
	double cr = y - 0.5;
	double ci = x;
	double zi = 0.0;
	double zr = 0.0;
	int i = 0;

	while(1) {
		i ++;
		double temp = zr * zi;
		double zr2 = zr * zr;
		double zi2 = zi * zi;
		zr = zr2 - zi2 + cr;
		zi = temp + temp + ci;
		if (zi2 + zr2 &gt; BAILOUT)
			return i;
		if (i &gt; MAX_ITERATIONS)
			return 0;
	}

}

int main (int argc, const char * argv[]) {
	struct timeval aTv;
	gettimeofday(&amp;aTv, NULL);
	long init_time = aTv.tv_sec;
	long init_usec = aTv.tv_usec;

	int x,y;
	for (y = -39; y &lt; 39; y++) {
		printf("\n");
		for (x = -39; x &lt; 39; x++) {
			int i = mandelbrot(x/40.0, y/40.0);
			if (i==0)
				printf("*");
			else
				printf(" ");
		}
	}
	printf ("\n");

	gettimeofday(&amp;aTv,NULL);
	double query_time = (aTv.tv_sec - init_time) + (double)(aTv.tv_usec - init_usec)/1000000.0;
	printf ("C Elapsed %0.2f\n", query_time);
    return 0;
}</pre>
<p><strong>Java</strong></p>
<pre class="brush: java">import java.util.*;

class Mandelbrot
{
	static int BAILOUT = 16;
	static int MAX_ITERATIONS = 1000;

	private static int iterate(float x, float y)
	{
		float cr = y-0.5f;
		float ci = x;
		float zi = 0.0f;
		float zr = 0.0f;
		int i = 0;
		while (true) {
			i++;
			float temp = zr * zi;
			float zr2 = zr * zr;
			float zi2 = zi * zi;
			zr = zr2 - zi2 + cr;
			zi = temp + temp + ci;
			if (zi2 + zr2 &gt; BAILOUT)
				return i;
			if (i &gt; MAX_ITERATIONS)
				return 0;
		}
	}

	public static void main(String args[])
	{
		Date d1 = new Date();
		int x,y;
		for (y = -39; y &lt; 39; y++) {
			System.out.print("\n");
			for (x = -39; x &lt; 39; x++) {
				if (iterate(x/40.0f,y/40.0f) == 0)
					System.out.print("*");
				else
					System.out.print(" ");

			}
		}
		Date d2 = new Date();
		long diff = d2.getTime() - d1.getTime();
		System.out.println("\nJava Elapsed " + diff/1000.0f);

	}
}</pre>
<p><strong>PHP</strong></p>
<pre class="brush: php">&lt;?php
define("BAILOUT",16);
define("MAX_ITERATIONS",1000);

class Mandelbrot
{

	function Mandelbrot()
	{
		$d1 = microtime(1);
		for ($y = -39; $y &lt; 39; $y++) {
			echo("\n");
			for ($x = -39; $x &lt; 39; $x++) {
				if ($this-&gt;iterate($x/40.0,$y/40.0) == 0)
					echo("*");
				else
					echo(" ");

			}
		}
		$d2 = microtime(1);
		$diff = $d2 - $d1;
		printf("\nPHP Elapsed %0.2f", $diff);
	}

	function iterate($x,$y)
	{
		$cr = $y-0.5;
		$ci = $x;
		$zi = 0.0;
		$zr = 0.0;
		$i = 0;
		while (true) {
			$i++;
			$temp = $zr * $zi;
			$zr2 = $zr * $zr;
			$zi2 = $zi * $zi;
			$zr = $zr2 - $zi2 + $cr;
			$zi = $temp + $temp + $ci;
			if ($zi2 + $zr2 &gt; BAILOUT)
				return $i;
			if ($i &gt; MAX_ITERATIONS)
				return 0;
		}

	}

}

$m = new Mandelbrot();
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/php/278/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C语言实现的简单 Web 服务器</title>
		<link>http://www.waimv.com/linux/252/</link>
		<comments>http://www.waimv.com/linux/252/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 06:45:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=252</guid>
		<description><![CDATA[/* * WebServer.c * *  Created on: Nov 3, 2012 *      Author: pavithra * * A web server in C language using only the standard libraries. * The port number is passed as an argument. * */ #include &#60;stdio.h&#62; #include &#60;unistd.h&#62; #include &#60;stdlib.h&#62; #include &#60;string.h&#62; #include &#60;sys/types.h&#62; #include &#60;sys/socket.h&#62; #include &#60;netinet/in.h&#62; #include &#60;fcntl.h&#62; [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">/*</div>
<div id="_mcePaste">* WebServer.c</div>
<div id="_mcePaste">*</div>
<div id="_mcePaste">*  Created on: Nov 3, 2012</div>
<div id="_mcePaste">*      Author: pavithra</div>
<div id="_mcePaste">*</div>
<div id="_mcePaste">* A web server in C language using only the standard libraries.</div>
<div id="_mcePaste">* The port number is passed as an argument.</div>
<div id="_mcePaste">*</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">#include &lt;stdio.h&gt;</div>
<div id="_mcePaste">#include &lt;unistd.h&gt;</div>
<div id="_mcePaste">#include &lt;stdlib.h&gt;</div>
<div id="_mcePaste">#include &lt;string.h&gt;</div>
<div id="_mcePaste">#include &lt;sys/types.h&gt;</div>
<div id="_mcePaste">#include &lt;sys/socket.h&gt;</div>
<div id="_mcePaste">#include &lt;netinet/in.h&gt;</div>
<div id="_mcePaste">#include &lt;fcntl.h&gt;</div>
<div id="_mcePaste">#include &lt;errno.h&gt;</div>
<div id="_mcePaste">#define EOL &#8220;\r\n&#8221;</div>
<div id="_mcePaste">#define EOL_SIZE 2</div>
<div id="_mcePaste">typedef struct {</div>
<div id="_mcePaste">char *ext;</div>
<div id="_mcePaste">char *mediatype;</div>
<div id="_mcePaste">} extn;</div>
<div id="_mcePaste">//Possible media types</div>
<div id="_mcePaste">extn extensions[] ={</div>
<div id="_mcePaste">{&#8220;gif&#8221;, &#8220;image/gif&#8221; },</div>
<div id="_mcePaste">{&#8220;txt&#8221;, &#8220;text/plain&#8221; },</div>
<div id="_mcePaste">{&#8220;jpg&#8221;, &#8220;image/jpg&#8221; },</div>
<div id="_mcePaste">{&#8220;jpeg&#8221;,&#8221;image/jpeg&#8221;},</div>
<div id="_mcePaste">{&#8220;png&#8221;, &#8220;image/png&#8221; },</div>
<div id="_mcePaste">{&#8220;ico&#8221;, &#8220;image/ico&#8221; },</div>
<div id="_mcePaste">{&#8220;zip&#8221;, &#8220;image/zip&#8221; },</div>
<div id="_mcePaste">{&#8220;gz&#8221;,  &#8221;image/gz&#8221;  },</div>
<div id="_mcePaste">{&#8220;tar&#8221;, &#8220;image/tar&#8221; },</div>
<div id="_mcePaste">{&#8220;htm&#8221;, &#8220;text/html&#8221; },</div>
<div id="_mcePaste">{&#8220;html&#8221;,&#8221;text/html&#8221; },</div>
<div id="_mcePaste">{&#8220;php&#8221;, &#8220;text/html&#8221; },</div>
<div id="_mcePaste">{&#8220;pdf&#8221;,&#8221;application/pdf&#8221;},</div>
<div id="_mcePaste">{&#8220;zip&#8221;,&#8221;application/octet-stream&#8221;},</div>
<div id="_mcePaste">{&#8220;rar&#8221;,&#8221;application/octet-stream&#8221;},</div>
<div id="_mcePaste">{0,0} };</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">A helper function</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">void error(const char *msg) {</div>
<div id="_mcePaste">perror(msg);</div>
<div id="_mcePaste">exit(1);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">A helper function</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">int get_file_size(int fd) {</div>
<div id="_mcePaste">struct stat stat_struct;</div>
<div id="_mcePaste">if (fstat(fd, &amp;stat_struct) == -1)</div>
<div id="_mcePaste">return (1);</div>
<div id="_mcePaste">return (int) stat_struct.st_size;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">A helper function</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">void send_new(int fd, char *msg) {</div>
<div id="_mcePaste">int len = strlen(msg);</div>
<div id="_mcePaste">if (send(fd, msg, len, 0) == -1) {</div>
<div id="_mcePaste">printf(&#8220;Error in send\n&#8221;);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">This function recieves the buffer</div>
<div id="_mcePaste">until an &#8220;End of line(EOL)&#8221; byte is recieved</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">int recv_new(int fd, char *buffer) {</div>
<div id="_mcePaste">char *p = buffer; // Use of a pointer to the buffer rather than dealing with the buffer directly</div>
<div id="_mcePaste">int eol_matched = 0; // Use to check whether the recieved byte is matched with the buffer byte or not</div>
<div id="_mcePaste">while (recv(fd, p, 1, 0) != 0) // Start receiving 1 byte at a time</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">if (*p == EOL[eol_matched]) // if the byte matches with the first eol byte that is &#8216;\r&#8217;</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">++eol_matched;</div>
<div id="_mcePaste">if (eol_matched == EOL_SIZE) // if both the bytes matches with the EOL</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">*(p + 1 &#8211; EOL_SIZE) = &#8216;\0&#8242;; // End the string</div>
<div id="_mcePaste">return (strlen(buffer)); // Return the bytes recieved</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">} else {</div>
<div id="_mcePaste">eol_matched = 0;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">p++; // Increment the pointer to receive next byte</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">return (0);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">A helper function: Returns the</div>
<div id="_mcePaste">web root location.</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">char* webroot() {</div>
<div id="_mcePaste">// open the file &#8220;conf&#8221; for reading</div>
<div id="_mcePaste">FILE *in = fopen(&#8220;conf&#8221;, &#8220;rt&#8221;);</div>
<div id="_mcePaste">// read the first line from the file</div>
<div id="_mcePaste">char buff[1000];</div>
<div id="_mcePaste">fgets(buff, 1000, in);</div>
<div id="_mcePaste">// close the stream</div>
<div id="_mcePaste">fclose(in);</div>
<div id="_mcePaste">char* nl_ptr = strrchr(buff, &#8216;\n&#8217;);</div>
<div id="_mcePaste">if (nl_ptr != NULL)</div>
<div id="_mcePaste">*nl_ptr = &#8216;\0&#8242;;</div>
<div id="_mcePaste">return strdup(buff);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">Handles php requests</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">void php_cgi(char* script_path, int fd) {</div>
<div id="_mcePaste">send_new(fd, &#8220;HTTP/1.1 200 OK\n Server: Web Server in C\n Connection: close\n&#8221;);</div>
<div id="_mcePaste">dup2(fd, STDOUT_FILENO);</div>
<div id="_mcePaste">char script[500];</div>
<div id="_mcePaste">strcpy(script, &#8220;SCRIPT_FILENAME=&#8221;);</div>
<div id="_mcePaste">strcat(script, script_path);</div>
<div id="_mcePaste">putenv(&#8220;GATEWAY_INTERFACE=CGI/1.1&#8243;);</div>
<div id="_mcePaste">putenv(script);</div>
<div id="_mcePaste">putenv(&#8220;QUERY_STRING=&#8221;);</div>
<div id="_mcePaste">putenv(&#8220;REQUEST_METHOD=GET&#8221;);</div>
<div id="_mcePaste">putenv(&#8220;REDIRECT_STATUS=true&#8221;);</div>
<div id="_mcePaste">putenv(&#8220;SERVER_PROTOCOL=HTTP/1.1&#8243;);</div>
<div id="_mcePaste">putenv(&#8220;REMOTE_HOST=127.0.0.1&#8243;);</div>
<div id="_mcePaste">execl(&#8220;/usr/bin/php-cgi&#8221;, &#8220;php-cgi&#8221;, NULL);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">This function parses the HTTP requests,</div>
<div id="_mcePaste">arrange resource locations,</div>
<div id="_mcePaste">check for supported media types,</div>
<div id="_mcePaste">serves files in a web root,</div>
<div id="_mcePaste">sends the HTTP error codes.</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">int connection(int fd) {</div>
<div id="_mcePaste">char request[500], resource[500], *ptr;</div>
<div id="_mcePaste">int fd1, length;</div>
<div id="_mcePaste">if (recv_new(fd, request) == 0) {</div>
<div id="_mcePaste">printf(&#8220;Recieve Failed\n&#8221;);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">printf(&#8220;%s\n&#8221;, request);</div>
<div id="_mcePaste">// Check for a valid browser request</div>
<div id="_mcePaste">ptr = strstr(request, &#8221; HTTP/&#8221;);</div>
<div id="_mcePaste">if (ptr == NULL) {</div>
<div id="_mcePaste">printf(&#8220;NOT HTTP !\n&#8221;);</div>
<div id="_mcePaste">} else {</div>
<div id="_mcePaste">*ptr = 0;</div>
<div id="_mcePaste">ptr = NULL;</div>
<div id="_mcePaste">if (strncmp(request, &#8220;GET &#8220;, 4) == 0) {</div>
<div id="_mcePaste">ptr = request + 4;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">if (ptr == NULL) {</div>
<div id="_mcePaste">printf(&#8220;Unknown Request ! \n&#8221;);</div>
<div id="_mcePaste">} else {</div>
<div id="_mcePaste">if (ptr[strlen(ptr) - 1] == &#8216;/&#8217;) {</div>
<div id="_mcePaste">strcat(ptr, &#8220;index.html&#8221;);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">strcpy(resource, webroot());</div>
<div id="_mcePaste">strcat(resource, ptr);</div>
<div id="_mcePaste">char* s = strchr(ptr, &#8216;.&#8217;);</div>
<div id="_mcePaste">int i;</div>
<div id="_mcePaste">for (i = 0; extensions[i].ext != NULL; i++) {</div>
<div id="_mcePaste">if (strcmp(s + 1, extensions[i].ext) == 0) {</div>
<div id="_mcePaste">fd1 = open(resource, O_RDONLY, 0);</div>
<div id="_mcePaste">printf(&#8220;Opening \&#8221;%s\&#8221;\n&#8221;, resource);</div>
<div id="_mcePaste">if (fd1 == -1) {</div>
<div id="_mcePaste">printf(&#8220;404 File not found Error\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;HTTP/1.1 404 Not Found\r\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;Server : Web Server in C\r\n\r\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;&lt;html&gt;&lt;head&gt;&lt;title&gt;404 Not Found&lt;/head&gt;&lt;/title&gt;&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;&lt;body&gt;&lt;p&gt;404 Not Found: The requested resource could not be found!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;&#8221;);</div>
<div id="_mcePaste">//Handling php requests</div>
<div id="_mcePaste">} else if (strcmp(extensions[i].ext, &#8220;php&#8221;) == 0) {</div>
<div id="_mcePaste">php_cgi(resource, fd);</div>
<div id="_mcePaste">sleep(1);</div>
<div id="_mcePaste">close(fd);</div>
<div id="_mcePaste">exit(1);</div>
<div id="_mcePaste">} else {</div>
<div id="_mcePaste">printf(&#8220;200 OK, Content-Type: %s\n\n&#8221;,</div>
<div id="_mcePaste">extensions[i].mediatype);</div>
<div id="_mcePaste">send_new(fd, &#8220;HTTP/1.1 200 OK\r\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;Server : Web Server in C\r\n\r\n&#8221;);</div>
<div id="_mcePaste">if (ptr == request + 4) // if it is a GET request</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">if ((length = get_file_size(fd1)) == -1)</div>
<div id="_mcePaste">printf(&#8220;Error in getting size !\n&#8221;);</div>
<div id="_mcePaste">size_t total_bytes_sent = 0;</div>
<div id="_mcePaste">ssize_t bytes_sent;</div>
<div id="_mcePaste">while (total_bytes_sent &lt; length) {</div>
<div id="_mcePaste">//Zero copy optimization</div>
<div id="_mcePaste">if ((bytes_sent = sendfile(fd, fd1, 0,</div>
<div id="_mcePaste">length &#8211; total_bytes_sent)) &lt;= 0) {</div>
<div id="_mcePaste">if (errno == EINTR || errno == EAGAIN) {</div>
<div id="_mcePaste">continue;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">perror(&#8220;sendfile&#8221;);</div>
<div id="_mcePaste">return -1;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">total_bytes_sent += bytes_sent;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">break;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">int size = sizeof(extensions) / sizeof(extensions[0]);</div>
<div id="_mcePaste">if (i == size &#8211; 2) {</div>
<div id="_mcePaste">printf(&#8220;415 Unsupported Media Type\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;HTTP/1.1 415 Unsupported Media Type\r\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;Server : Web Server in C\r\n\r\n&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;&lt;html&gt;&lt;head&gt;&lt;title&gt;415 Unsupported Media Type&lt;/head&gt;&lt;/title&gt;&#8221;);</div>
<div id="_mcePaste">send_new(fd, &#8220;&lt;body&gt;&lt;p&gt;415 Unsupported Media Type!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;&#8221;);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">close(fd);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">shutdown(fd, SHUT_RDWR);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">int main(int argc, char *argv[]) {</div>
<div id="_mcePaste">int sockfd, newsockfd, portno, pid;</div>
<div id="_mcePaste">socklen_t clilen;</div>
<div id="_mcePaste">struct sockaddr_in serv_addr, cli_addr;</div>
<div id="_mcePaste">if (argc &lt; 2) {</div>
<div id="_mcePaste">fprintf(stderr, &#8220;ERROR, no port provided\n&#8221;);</div>
<div id="_mcePaste">exit(1);</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">sockfd = socket(AF_INET, SOCK_STREAM, 0);</div>
<div id="_mcePaste">if (sockfd &lt; 0)</div>
<div id="_mcePaste">error(&#8220;ERROR opening socket&#8221;);</div>
<div id="_mcePaste">bzero((char *) &amp;serv_addr, sizeof(serv_addr));</div>
<div id="_mcePaste">portno = atoi(argv[1]);</div>
<div id="_mcePaste">serv_addr.sin_family = AF_INET;</div>
<div id="_mcePaste">serv_addr.sin_addr.s_addr = INADDR_ANY;</div>
<div id="_mcePaste">serv_addr.sin_port = htons(portno);</div>
<div id="_mcePaste">if (bind(sockfd, (struct sockaddr *) &amp;serv_addr, sizeof(serv_addr)) &lt; 0)</div>
<div id="_mcePaste">error(&#8220;ERROR on binding&#8221;);</div>
<div id="_mcePaste">listen(sockfd, 5);</div>
<div id="_mcePaste">clilen = sizeof(cli_addr);</div>
<div id="_mcePaste">/*</div>
<div id="_mcePaste">Server runs forever, forking off a separate</div>
<div id="_mcePaste">process for each connection.</div>
<div id="_mcePaste">*/</div>
<div id="_mcePaste">while (1) {</div>
<div id="_mcePaste">newsockfd = accept(sockfd, (struct sockaddr *) &amp;cli_addr, &amp;clilen);</div>
<div id="_mcePaste">if (newsockfd &lt; 0)</div>
<div id="_mcePaste">error(&#8220;ERROR on accept&#8221;);</div>
<div id="_mcePaste">pid = fork();</div>
<div id="_mcePaste">if (pid &lt; 0)</div>
<div id="_mcePaste">error(&#8220;ERROR on fork&#8221;);</div>
<div id="_mcePaste">if (pid == 0) {</div>
<div id="_mcePaste">close(sockfd);</div>
<div id="_mcePaste">connection(newsockfd);</div>
<div id="_mcePaste">exit(0);</div>
<div id="_mcePaste">} else</div>
<div id="_mcePaste">close(newsockfd);</div>
<div id="_mcePaste">} /* end of while */</div>
<div id="_mcePaste">close(sockfd);</div>
<div id="_mcePaste">return 0; /* we never get here */</div>
<div id="_mcePaste">}</div>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/linux/252/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>window下扩展开发 （php5.3.5+vs2010)</title>
		<link>http://www.waimv.com/linux/209/</link>
		<comments>http://www.waimv.com/linux/209/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 15:12:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[扩展]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=209</guid>
		<description><![CDATA[开发环境的搭建 首先我们需要一个 PHP 的源码包，这个可以到http://www.php.net/downloads.php 去下载，记得我们是要源码包（Complete Source Code）而不是PHP 的二进制代码包（Windows Binaries）。本文所采用是 PHP 5.3.5 的源码包。 除此之外我们还需要一个 php5ts.lib 。这在PHP 二进制代码包的 dev 目录（php4ts.lib 则是直接放在二进制代码包的根目录）下可以找到。 将该源码包解压到某个目录（假定是D:\Work\PHP\work\php5，以后我们以 $PHP 指代该源码根目录），我们可以看到main、Zend、win32、TSRM、ext 等目录。在 ext 目录下有 ext_skel 和 ext_skel_win32.php 两个文件。 Ext_skel 是在 xNix 环境下的一个用于构建PHP 扩展，生成 PHP 扩展框架的自动化脚本。由于是在 xNix 环境下使用的，并且使用方法也比较简单，故本文不再赘述。具体使用方法可参见源码包根目录（即 $PHP）下的README.EXT_SKEL 文件。ext_skel_win32.php 顾名思义是用来创建 Win32 环境下扩展框架的的脚本。这个脚本需要 Cygwin (http://www.cygwin.com/) 的支持。使用方法和ext_skel 大同小异。本文所采用的是第三种方法：使用 VC 的向导手动创建一个项目文件。这种方法好处就是不需要 Cygwin 的支持，但在编译该扩展的 xNix 版本时仍然需要通过ext_skel 来创建一个相应的框架。 我们在这里使用的 [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">开发环境的搭建</div>
<div id="_mcePaste">首先我们需要一个 PHP 的源码包，这个可以到http://www.php.net/downloads.php 去下载，记得我们是要源码包（Complete Source Code）而不是PHP 的二进制代码包（Windows Binaries）。本文所采用是 PHP 5.3.5 的源码包。</div>
<div></div>
<div id="_mcePaste">除此之外我们还需要一个 php5ts.lib 。这在PHP 二进制代码包的 dev 目录（php4ts.lib 则是直接放在二进制代码包的根目录）下可以找到。</div>
<div id="_mcePaste">将该源码包解压到某个目录（假定是D:\Work\PHP\work\php5，以后我们以 $PHP 指代该源码根目录），我们可以看到main、Zend、win32、TSRM、ext 等目录。在 ext 目录下有 ext_skel 和 ext_skel_win32.php 两个文件。</div>
<div></div>
<div>Ext_skel 是在 xNix 环境下的一个用于构建PHP 扩展，生成 PHP 扩展框架的自动化脚本。由于是在 xNix 环境下使用的，并且使用方法也比较简单，故本文不再赘述。具体使用方法可参见源码包根目录（即 $PHP）下的README.EXT_SKEL 文件。ext_skel_win32.php 顾名思义是用来创建 Win32 环境下扩展框架的的脚本。这个脚本需要 Cygwin (http://www.cygwin.com/) 的支持。使用方法和ext_skel 大同小异。本文所采用的是第三种方法：使用 VC 的向导手动创建一个项目文件。这种方法好处就是不需要 Cygwin 的支持，但在编译该扩展的 xNix 版本时仍然需要通过ext_skel 来创建一个相应的框架。</div>
<div></div>
<div id="_mcePaste">我们在这里使用的 IDE 是 VC++ 2010 Express Edition 。如果你的扩展将来需要分发到更多的地方，建议你使用 VC++ 6.0，这样可增加一定的兼容性。PHP 扩展在 VC++ 6.0 和 VC++ 2010里面的操作都差不多，但在 VC++ 2010 中需要进行一些额外的设置。</div>
<div></div>
<div id="_mcePaste">现在让我们打开 VC++ 2010，在菜单中选择 【File】 -&gt; 【New】 -&gt; 【Project】 来创建这个扩展的项目文件。</div>
<div id="_mcePaste">在【项目类型(Project Types)】中选择“Virual C++”，项目【模版（Templates）】为“Win32 Project”。在本例中我们的扩展名字为 phpmore，位于 $PHP\ext目录下。</div>
<div></div>
<div id="_mcePaste">提示：虽然一个扩展项目的存放位置并没有具体规定，但放到 $PHP\ext 目录下是一个惯例，这会避免很多不必要的麻烦。</div>
<div></div>
<div id="_mcePaste">在出现的 【Win32 应用程序向导（Win32 Application Wizard）】中点击左面的【应用程序设置（Application Settings）】，设置【程序类型（Application Type）】为“DLL”，并且将其设置为【空项目（Empty Project）】。</div>
<div></div>
<div id="_mcePaste">点击【完成（Finish）】就创建了该扩展的项目文件。此时你应该会在 $PHP\ext\phpmore 目录下找到该扩展的“解决方案(solution)”文件。在$PHP\ext\phpmore\ phpmore 目录下找到扩展的“项目（Project）”文件。</div>
<div></div>
<div id="_mcePaste">提示：按照 VS 2010 的说法，一个“解决方案(solution)”是由多个“项目（Project）”组成的，因此产生这样的目录结构是十分合理的。但对 PHP 扩展而言，由于需要在各个系统平台下运行，如果把所有平台的项目文件都放在扩展的根目录下面，就会给人一种非常凌乱的感觉。一个值得推荐的解决方法就是为每个平台都建立一个目录，各自包含相应的项目文件，而把源代码文件（*.c 和 *.h 等）放在扩展根目录或其他一个单独的目录。本文为了简单叙述起见，不再额外处理，但在实际应用过程中请注意源代码目录的合理分配。</div>
<div></div>
<div id="_mcePaste">现在我们将扩展的源代码文件（phpmore.c 和 phpmore.h ，当然此时是空文件）新建/添加到 phpmore 扩展的项目文件当中。</div>
<div id="_mcePaste">提示：在 VC++ 2010 中添加源代码文件时默认的后缀名为 .cpp，此时需要主动为文件添加上 .c 的扩展名。否则 VC 的编译器会将其默认为 C++ 代码而进行编译（当然这种设置也是可以改变的），这样就可能会产生一些编译错误。</div>
<div></div>
<div id="_mcePaste">为了能够很方便的引用 PHP 代码的头文件以及对项目进行编译，我们还需要对项目文件进行一些设置。请通过菜单【项目(Project)】-&gt; 【phpmore 属性(Properties)】进入项目的属性设置页。这里我们先对项目的【Release】版进行配置。</div>
<div></div>
<div id="_mcePaste">先转到【C++】属性的【General】页填入“Additional Include Directories”：</div>
<div>$PHP;$PHP\main;$PHP\win32;$PHP\TSRM;$PHP\Zend。我们这里输入的绝对路径，但实际开发过程中最好填入相对路径。</div>
<div></div>
<div id="_mcePaste">再转到【C++】属性的【Preprocessor】页补充一些“Preprocessor Definitions”： ZEND_WIN32;PHP_WIN32;ZTS=1; ZEND_DEBUG=0; COMPILE_DL_PHPMORE 。前面3个是在 Win32 环境下开发所必加的预定义；ZEND_DEBUG=0表示扩展不创建为Debug 版本（因为现在是在配置Release 版本嘛～）；COMPILE_DL_PHPMORE 用于是否将本扩展编译为一个“外部扩展（定义见文首）”。</div>
<div></div>
<div id="_mcePaste">在【C++】属性里面还需要设置的有：【Code Generation】页的“运行库（Runtime Library）”请设置为“Multi-threaded DLL (/MD)”；【Advanced】页的“编译方式（Compile As）”请设置为“Compile as C Code (/TC)”</div>
<div id="_mcePaste">此外还需要在【连接器(Linker)】属性的【Input】页添加一个“Additional Dependencies”： php5ts.lib 。你可以把 php5ts.lib 放到一个 VC++ 能找到的地方，比如项目文件的目录。</div>
<div></div>
<div id="_mcePaste">这样，整个扩展项目文件的Release 版本就配置好了。对于 Debug 版本可以有针对性的作一些改动。不过需要注意，一般的 PHP 二进制代码包不允许加载 Debug 版本的扩展，只有将 PHP 编译为 Debug 版本才能加载 Debug 版本的扩展。</div>
<div></div>
<div id="_mcePaste">提示：如果需要扩展在多种PHP版本中都可布署，那可以先设置一个基本配置（就像上例不设置 php5ts.lib），然后再创建一个继承自基本配置的新的配置－比如Release_PHP5－在这个 Release_PHP5 中额外设置一下 php5ts.lib 就可以了。有的扩展还不事先预定义 ZTS，而是额外再创建一个 Release_TS 的配置，道理是一样的。</div>
<div></div>
<div>在编译过程中会提示你找不到<span style="color: #905e40; font-family: 微软雅黑, 黑体; line-height: 20px; background-color: #f4e6db;">config.w32.h 这个文件 按以下步骤来操作 </span></div>
<div></div>
<div><span style="color: #494949; font-family: simsun; line-height: 21px; background-color: #f4e6db;">下载2个必要的包</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">http://www.php.net/extra/bindlib_w32.zip</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">http://www.php.net/extra/win32build.zip</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">把 这2个包的内容放一起，例如解压缩到 D:\win32build</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">请使用 Visual Studio Tools 下的 Visual Studio 命令提示 操作</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">进入D:\php-src\</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">执行buildconf.bat</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">建立一个临时环境变量，执行set path=%path%;D:\win32build\bin</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">执行 cscript /nologo configure.js &#8211;with-php-build=&#8221;../win32build&#8221; &#8211;without-libxml &#8211;disable-odbc</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">如果想 要No Thread Safe 模式就在上面的命令最后加上参数 &#8211;disable-zts</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">然后看看是不是main下面多了一个 config.w32.h~</span><br style="color: #494949; font-family: simsun; font-size: 14px; line-height: 21px; text-align: left; background-color: #f4e6db;" /><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">还有一点，config.w32</span><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">.h 里面 #define PHP_COMPILER_ID </span><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">改成和你正在用的 PHP 编译版本相同的编译器ID，</span><span style="color: #494949; font-family: simsun; line-height: 21px; text-align: left; background-color: #f4e6db;">例如VC6或者VC9，不然编译出来的扩展没法载入，说实话，这个ID的判断真的很傻很天真&#8230;.</span></div>
<div></div>
<div id="_mcePaste">OK，现在万事俱备，只欠编码了，让我们这就开始吧！</div>
<div id="_mcePaste">所有的扩展都大致由4个部分组成：引用相关的头文件、Zend 模块的声明与相关函数实现、get_module() 函数的实现以及导出函数的声明和实现。</div>
<p>开发环境的搭建<br />
首先我们需要一个 PHP 的源码包，这个可以到http://www.php.net/downloads.php 去下载，记得我们是要源码包（Complete Source Code）而不是PHP 的二进制代码包（Windows Binaries）。本文所采用是 PHP 5.3.5 的源码包。除此之外我们还需要一个 php5ts.lib 。这在PHP 二进制代码包的 dev 目录（php4ts.lib 则是直接放在二进制代码包的根目录）下可以找到。<br />
将该源码包解压到某个目录（假定是D:\Work\PHP\work\php5，以后我们以 $PHP 指代该源码根目录），我们可以看到main、Zend、win32、TSRM、ext 等目录。在 ext 目录下有 ext_skel 和 ext_skel_win32.php 两个文件。Ext_skel 是在 xNix 环境下的一个用于构建PHP 扩展，生成 PHP 扩展框架的自动化脚本。由于是在 xNix 环境下使用的，并且使用方法也比较简单，故本文不再赘述。具体使用方法可参见源码包根目录（即 $PHP）下的README.EXT_SKEL 文件。ext_skel_win32.php 顾名思义是用来创建 Win32 环境下扩展框架的的脚本。这个脚本需要 Cygwin (http://www.cygwin.com/) 的支持。使用方法和ext_skel 大同小异。本文所采用的是第三种方法：使用 VC 的向导手动创建一个项目文件。这种方法好处就是不需要 Cygwin 的支持，但在编译该扩展的 xNix 版本时仍然需要通过ext_skel 来创建一个相应的框架。<br />
我们在这里使用的 IDE 是 VC++ 2010 Express Edition 。如果你的扩展将来需要分发到更多的地方，建议你使用 VC++ 6.0，这样可增加一定的兼容性。PHP 扩展在 VC++ 6.0 和 VC++ 2010里面的操作都差不多，但在 VC++ 2010 中需要进行一些额外的设置。<br />
现在让我们打开 VC++ 2010，在菜单中选择 【File】 -&gt; 【New】 -&gt; 【Project】 来创建这个扩展的项目文件。<br />
在【项目类型(Project Types)】中选择“Virual C++”，项目【模版（Templates）】为“Win32 Project”。在本例中我们的扩展名字为 phpmore，位于 $PHP\ext目录下。<br />
提示：虽然一个扩展项目的存放位置并没有具体规定，但放到 $PHP\ext 目录下是一个惯例，这会避免很多不必要的麻烦。<br />
在出现的 【Win32 应用程序向导（Win32 Application Wizard）】中点击左面的【应用程序设置（Application Settings）】，设置【程序类型（Application Type）】为“DLL”，并且将其设置为【空项目（Empty Project）】。点击【完成（Finish）】就创建了该扩展的项目文件。此时你应该会在 $PHP\ext\phpmore 目录下找到该扩展的“解决方案(solution)”文件。在$PHP\ext\phpmore\ phpmore 目录下找到扩展的“项目（Project）”文件。<br />
提示：按照 VS 2010 的说法，一个“解决方案(solution)”是由多个“项目（Project）”组成的，因此产生这样的目录结构是十分合理的。但对 PHP 扩展而言，由于需要在各个系统平台下运行，如果把所有平台的项目文件都放在扩展的根目录下面，就会给人一种非常凌乱的感觉。一个值得推荐的解决方法就是为每个平台都建立一个目录，各自包含相应的项目文件，而把源代码文件（*.c 和 *.h 等）放在扩展根目录或其他一个单独的目录。本文为了简单叙述起见，不再额外处理，但在实际应用过程中请注意源代码目录的合理分配。<br />
现在我们将扩展的源代码文件（phpmore.c 和 phpmore.h ，当然此时是空文件）新建/添加到 phpmore 扩展的项目文件当中。<br />
提示：在 VC++ 2010 中添加源代码文件时默认的后缀名为 .cpp，此时需要主动为文件添加上 .c 的扩展名。否则 VC 的编译器会将其默认为 C++ 代码而进行编译（当然这种设置也是可以改变的），这样就可能会产生一些编译错误。<br />
为了能够很方便的引用 PHP 代码的头文件以及对项目进行编译，我们还需要对项目文件进行一些设置。请通过菜单【项目(Project)】-&gt; 【phpmore 属性(Properties)】进入项目的属性设置页。这里我们先对项目的【Release】版进行配置。见图四。<br />
先转到【C++】属性的【General】页填入“Additional Include Directories”： $PHP;$PHP\main;$PHP\win32;$PHP\TSRM;$PHP\Zend。我们这里输入的绝对路径，但实际开发过程中最好填入相对路径。<br />
再转到【C++】属性的【Preprocessor】页补充一些“Preprocessor Definitions”： ZEND_WIN32;PHP_WIN32;ZTS=1; ZEND_DEBUG=0; COMPILE_DL_PHPMORE 。前面3个是在 Win32 环境下开发所必加的预定义；ZEND_DEBUG=0表示扩展不创建为Debug 版本（因为现在是在配置Release 版本嘛～）；COMPILE_DL_PHPMORE 用于是否将本扩展编译为一个“外部扩展（定义见文首）”。<br />
在【C++】属性里面还需要设置的有：【Code Generation】页的“运行库（Runtime Library）”请设置为“Multi-threaded DLL (/MD)”；【Advanced】页的“编译方式（Compile As）”请设置为“Compile as C Code (/TC)”<br />
此外还需要在【连接器(Linker)】属性的【Input】页添加一个“Additional Dependencies”： php5ts.lib 。你可以把 php5ts.lib 放到一个 VC++ 能找到的地方，比如项目文件的目录。当然你若采用的是 PHP 4的源码包，请相应地把php5ts.lib 替换为 php4ts.lib 。<br />
这样，整个扩展项目文件的Release 版本就配置好了。对于 Debug 版本可以有针对性的作一些改动。不过需要注意，一般的 PHP 二进制代码包不允许加载 Debug 版本的扩展，只有将 PHP 编译为 Debug 版本才能加载 Debug 版本的扩展。<br />
提示：如果需要扩展在多种PHP版本中都可布署，那可以先设置一个基本配置（就像上例不设置 php5ts.lib），然后再创建一个继承自基本配置的新的配置－比如Release_PHP5－在这个 Release_PHP5 中额外设置一下 php5ts.lib 就可以了。有的扩展还不事先预定义 ZTS，而是额外再创建一个 Release_TS 的配置，道理是一样的。<br />
OK，现在万事俱备，只欠编码了，让我们这就开始吧！<br />
所有的扩展都大致由4个部分组成：引用相关的头文件、Zend 模块的声明与相关函数实现、get_module() 函数的实现以及导出函数的声明和实现。</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">为了简单叙述起见，我先列出本文例子的代码：</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">phpmore.h :</p>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">01</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#ifndef PHPMORE_H</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">02</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#define PHPMORE_H</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">03</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="keyword bold" style="font-size: 1em !important; color: #006699 !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-weight: bold !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">extern</code> <code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">zend_module_entry phpmore_module_entry;</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">04</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#define phpext_phpmore_ptr &amp;phpmore_module_entry</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">05</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">06</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="comments" style="font-size: 1em !important; color: #008200 !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">/* declaration of functions to be exported */</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">07</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">ZEND_FUNCTION(welcome_to_phpmore);</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">08</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">PHP_MINFO_FUNCTION(phpmore);</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">09</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">10</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#define PHPMORE_VERSION "0.1.0"</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">11</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#endif</code></td>
</tr>
</tbody>
</table>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">phpmore.c :</p>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">01</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#define _USE_32BIT_TIME_T 1</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">02</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#include "php.h"</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">03</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#include "phpmore.h"</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">04</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">05</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">zend_function_entry phpmore_functions[] =</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">06</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">{</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">07</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">ZEND_FE(welcome_to_phpmore, NULL)</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">08</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">{NULL, NULL, NULL}</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">09</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">};</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">10</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">11</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">zend_module_entry phpmore_module_entry =</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">12</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">{</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">13</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">STANDARD_MODULE_HEADER,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">14</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="string" style="font-size: 1em !important; color: blue !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">"PHP&amp;More"</code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">15</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">phpmore_functions,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">16</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">NULL,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">17</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">NULL,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">18</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">NULL,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">19</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">NULL,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">20</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">PHP_MINFO(phpmore),</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">21</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">PHPMORE_VERSION,</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">22</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">STANDARD_MODULE_PROPERTIES</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">23</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">};</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">24</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">25</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#if COMPILE_DL_PHPMORE</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">26</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">ZEND_GET_MODULE(phpmore)</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">27</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="preprocessor" style="font-size: 1em !important; color: gray !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">#endif</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">28</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">29</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">PHP_MINFO_FUNCTION(phpmore)</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">30</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">{</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">31</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">php_info_print_table_start();</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">32</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">php_info_print_table_header(2, </code><code class="string" style="font-size: 1em !important; color: blue !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">"PHP&amp;More"</code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">, </code><code class="string" style="font-size: 1em !important; color: blue !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">"enabled"</code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">);</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">33</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">php_info_print_table_row(2, </code><code class="string" style="font-size: 1em !important; color: blue !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">"Version"</code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">, PHPMORE_VERSION);</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">34</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">php_info_print_table_end();</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">35</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">}</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">36</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">37</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">ZEND_FUNCTION(welcome_to_phpmore)</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">38</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">{</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">39</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="spaces" style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"> </code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">zend_printf(</code><code class="string" style="font-size: 1em !important; color: blue !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">"Welcome to PHP&amp;More!"</code><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">);</code></td>
</tr>
</tbody>
</table>
<table style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tbody style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<tr style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">
<td class="number" style="outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 3em !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; color: #afafaf !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;"><code style="font-size: 1em !important; color: #d48b00; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; padding-left: 0px !important; padding-right: 0.3em !important; padding-top: 0px !important; padding-bottom: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: right !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: 2.7em !important; line-height: 1.1em !important; min-height: inherit !important; display: block !important; margin: 0px !important; border: 0px !important initial !important initial !important;">40</code></td>
<td class="content" style="padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 3px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; font-size: 1em !important; min-height: inherit !important; border-left-style: solid !important; border-left-color: #6ce26c !important; margin: 0px !important;"><code class="plain" style="font-size: 1em !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; line-height: 1.1em !important; min-height: inherit !important; padding: 0px !important; margin: 0px !important; border: 0px !important initial !important initial !important;">}</code></td>
</tr>
</tbody>
</table>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">所有扩展都必须至少包含有 php.h ，这是一切的基础，因此必须首先在代码中引用（添加 #define _USE_32BIT_TIME_T 1 这一行是为了去掉 VC++ 2005 中 64 位时间格式的支持，在 VS.NET 2003 或 VC++ 6.0 中均无需这样做）。</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">接下来是扩展的 Zend 函数块的声明。定义了一个名为 phpmore_functions ，每一个元素都是一个 zend_function_entry 结构的 Zend 函数数组。该数组用来声明本扩展一共对外（即 PHP 脚本）提供了多少可用的（导出）函数。由于没有其他地方可以主动提供（导出）函数的个数，因此数组的最后一个元素必须为 {NULL, NULL, NULL}，以便 Zend Engine 可以获知函数数组的元素列表是否结束。</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">然后就是整个扩展模块的声明。这是一个扩展“最高”层次的声明。全方位地提供了 Zend Engine 所需要的各种信息。上面所声明的导出函数列表也仅仅是用来填充它的一个字段而已。除此之外，这个模块声明还负责提供扩展名称（就是将来在 phpinfo() 函数中出现的那个扩展的名字，本例为“PHP&amp;More”）、导出函数列表（本例为phpmore_functions）、模块启动函数（PHP_MINIT_FUNCTION，在模块第一次加载时被调用，本例为 NULL）、模块关闭函数（PHP_MSHUTDOWN_FUNCTION，在模块卸载关闭时被调用，本例为 NULL）、请求启动函数（在每个请求启动时被调用，本例为 NULL）、请求关闭函数（PHP_RINIT_FUNCTION，在每个请求关闭时被调用，本例为 NULL）、模块信息函数（PHP_RSHUTDOWN_FUNCTION，用于在 phpinfo() 中显示扩展的信息，本例为“PHP_MINFO_FUNCTION(phpmore)”）和模块版本（本例为 PHPMORE_VERSION ，定义在 phpmore.h ）等其他信息。这几个模块函数的调用关系及顺序见图：</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;"><img style="border: initial none initial;" src="http://yanbin.org/wp-content/uploads/php.life.cycles.png" alt="PHP 生存周期" /></p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">模块声明后面就是 get_module() 函数的实现。这个函数的声明没有手动写出，而是使用了一个宏 ZEND_GET_MODULE(phpmore) 来声明。这也是在扩展开发中常用的一种手段，我们应该尽力地去使用宏。get_module() 函数用于向 Zend Engine 报告这是个外部扩展，这也可以使得我们能够通过 dl() 函数来手动加载它。</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">剩下的两段代码便是我们前面声明函数的具体实现。一个是模块信息函数，一个是对外导出的 welcome_to_phpmore 函数。模块信息函数对外输出了本扩展的启用状态和版本号，而 welcome_to_phpmore 函数则在 PHP 脚本调用 welcome_to_phpmore() 时对外输出字符串“Welcome to PHP&amp;More!”。</p>
<p style="line-height: 1.5em; margin-top: 0px; margin-right: 0px; margin-bottom: 1em; margin-left: 0px; color: #29303b; font-family: Georgia, Verdana, Arial, serif; font-size: 12px; text-align: left; padding: 0px;">一个扩展的大致结构就是这样。简单编译后我们就得到了一个 phpmore.dll 的文件。相应更改更改 php.ini 及重新启动 Web 服务器后，就可以启用这个扩展了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/linux/209/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nginx apache 执行php脚本限制</title>
		<link>http://www.waimv.com/linux/195/</link>
		<comments>http://www.waimv.com/linux/195/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 02:04:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=195</guid>
		<description><![CDATA[Apache环境规则内容如下：Apache执行php脚本限制 把这些规则添加到.htaccess文件中 RewriteEngine on RewriteCond % !^$ RewriteRule uploads/(.*).(php)$ – [F] RewriteRule data/(.*).(php)$ – [F] RewriteRule templets/(.*).(php)$ –[F] nginx环境规则内容如下：nginx执行php脚本限制 LNMP有一个缺点就是目录权限设置上不如Apache，有时候网站程序存在上传漏洞或类似pathinfo的漏洞从而导致被上传了php木马，而给网站和服务器带来比较大危险。建议将网站目录的PHP权限去掉，当访问上传目录下的php文件时就会返回403错误。 首先要编辑nginx的虚拟主机配置，在fastcgi的location语句的前面按下面的内容添加： location ~ /(data&#124;uploads&#124;templets)/.*\.(php&#124;php5)?$ { deny all; }]]></description>
			<content:encoded><![CDATA[<p>Apache环境规则内容如下：<strong>Apache执行php脚本限制</strong> 把这些规则添加到.htaccess文件中</p>
<blockquote><p>RewriteEngine on RewriteCond % !^$</p>
<p>RewriteRule uploads/(.*).(php)$ – [F]</p>
<p>RewriteRule data/(.*).(php)$ – [F]</p>
<p>RewriteRule templets/(.*).(php)$ –[F]</p>
<p>nginx环境规则内容如下：<strong>nginx执行php脚本限制</strong></p>
<p>LNMP有一个缺点就是目录权限设置上不如Apache，有时候网站程序存在上传漏洞或类似pathinfo的漏洞从而导致被上传了php木马，而给网站和服务器带来比较大危险。建议将网站目录的PHP权限去掉，当访问上传目录下的php文件时就会返回403错误。</p>
<p>首先要编辑nginx的虚拟主机配置，在fastcgi的location语句的前面按下面的内容添加：</p>
<blockquote><p>location ~ /(data|uploads|templets)/.*\.(php|php5)?$ {</p>
<p>deny all;</p>
<p>}</p></blockquote>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/linux/195/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>图片缩略水印类</title>
		<link>http://www.waimv.com/php/3/</link>
		<comments>http://www.waimv.com/php/3/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 07:22:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=3</guid>
		<description><![CDATA[/** * 图片缩放水印类 * * @version 1.0 ; * */ class cls_photo { protected $waterrate = 0.2; //水印图标在图片上的比例 protected $width = 300; //缩略图默认宽度 protected $height = 200; //缩略图默认高度 protected $padding = 5; //水印图到边的距离 protected $water_mark = "./water.png"; protected $water_mark_pos = 5;//水印图片位置（1=左上角，2=右上角，3=左下角,4=右下角,5中央） protected $watermode = 0;// 0缩略图时不打水印 1缩略图时打水印 protected $magick_handle;//图片操作句柄 protected $format = array('jpg','gif','png','jpeg'); // 图片文件格式限定 [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush:php">

/**
 * 图片缩放水印类
 *
  * @version 1.0 ;
 *
 */
class cls_photo
{
    protected $waterrate = 0.2; //水印图标在图片上的比例
    protected $width = 300; //缩略图默认宽度
    protected $height = 200; //缩略图默认高度
    protected $padding = 5;  //水印图到边的距离
    protected $water_mark = "./water.png";
    protected $water_mark_pos = 5;//水印图片位置（1=左上角，2=右上角，3=左下角,4=右下角,5中央）
    protected $watermode = 0;// 0缩略图时不打水印 1缩略图时打水印
    protected $magick_handle;//图片操作句柄
    protected $format = array('jpg','gif','png','jpeg'); // 图片文件格式限定
    protected $smallpic_mode = 2;//默认模式 0为不生成缩略图， 1为裁切缩放 ，2为比例缩放 3为缩放填充模式

    /**
     * 设置图片类参数
     *
     * @param $arg 图片参数 多次可放入数组里 如下
     * @param $protected 参数值
     * array(
     *      'waterrate'=>0.2,
     *      'water_mark'=>'./water.png',
     *      'water_mark_pos'=>4,
     *      'smallpic_mode'=>1
     *      );
     * @return ture/false
     */
    public function set_args($arg,$val="")
    {
        $params = array('waterrate','water_mark','water_mark_pos','smallpic_mode','watermode','width','height');
        if(is_array($arg))
        {
            foreach ($arg as $k =>$v)
            {
                if(in_array($k,$params))
                {
                    $this->$k = $v;
                }
            }
        }
        else
        {
        	if(empty($val))
        	{
        	    return false;
        	}
        	else
        	{
        		if(in_array($arg,$params))
                {
                    $this->$arg = $val;
                }
        	}
        }
        return true;
    }

    /**
     * 图片缩放
     *
     * @param $src_file 源文件路径
     * @param $dst_file 目标文件路径
     * @return 缩略图片路径/false
     */
    public function scale($src_file,$dst_file="")
    {
        $dst_width  = $this->width;
        $dst_height = $this->height;
        $mode       = $this->smallpic_mode;
        $magic_water_handle = NewMagickWand();
        if (!MagickReadImage($magic_water_handle, $src_file))return false;

        //类型
        $srcext = strtolower(MagickGetImageFormat($magic_water_handle));
        if($srcext=='bmp')
        {
            $srcext = 'jpeg';
        }
        if(!in_array($srcext,$this->format))return false;
        //尺寸
        $src_width = MagickGetImageWidth($magic_water_handle);
        $src_height = MagickGetImageHeight($magic_water_handle);

        //裁切缩放模式
        if($mode == 1)
        {
            $pos_x=$pos_y = 0;//裁切临时位置
            $src_widthc = $src_width;//裁切临时宽度
            $src_heightc = $src_height;//裁切临时高度
            if($src_width/$src_height>$dst_width/$dst_height)
            {
                $src_widthc = $src_height*$dst_width/$dst_height;
                $pos_x = ($src_width-$src_widthc)/2;

            }
            else
            {
                $src_heightc = $src_width*$dst_height/$dst_width;
                $pos_y = ($src_height-$src_heightc)/2;
            }
        MagickCropImage($magic_water_handle,$src_widthc,$src_heightc,$pos_x,$pos_y);//裁切
        //因为MagickCropImage函数后，Gif 图像改，但画布不变
        $this->magick_handle = NewMagickWand();
        MagickNewImage($this->magick_handle,$src_widthc,$src_heightc,'#ffffff');
        MagickSetFormat($this->magick_handle,$srcext);
        MagickCompositeImage($this->magick_handle,$magic_water_handle,MW_OverCompositeOp,0,0);
        //缩放
        MagickScaleImage($this->magick_handle, $dst_width, $dst_height);

        }
        //比例缩放模式
        if($mode == 2)
        {
            if($src_width/$src_height>$dst_width/$dst_height)
            {
                $dst_height=$dst_width*$src_height/$src_width;
            }
            else
            {
                $dst_width=$dst_height*$src_width/$src_height;
            }
            $this->magick_handle=$magic_water_handle;//替换
            MagickScaleImage($this->magick_handle, $dst_width, $dst_height);//缩放
        }
        //缩放填充模式
        if($mode == 3)
        {
            if($src_width/$src_height>$dst_width/$dst_height)
            {
                $dst_heightc=$dst_width*$src_height/$src_width;
                $dst_widthc=$dst_width;
            }
            else
            {
                $dst_widthc=$dst_height*$src_width/$src_height;
                $dst_heightc=$dst_height;
            }
              MagickScaleImage($magic_water_handle, $dst_widthc, $dst_heightc);//缩放
            $this->magick_handle = NewMagickWand();
            MagickNewImage($this->magick_handle,$dst_width,$dst_height,$this->smallpic_bgcolor);
            MagickSetFormat($this->magick_handle,$srcext);
            MagickCompositeImage($this->magick_handle,$magic_water_handle,MW_OverCompositeOp,($dst_width-$dst_widthc)/2,($dst_height-$dst_heightc)/2);
        }
        //打水印
        if($this->watermode == 1)
        {
            $this->set_mark();
        }
        if(empty($dst_file))
        {
            //建立临时文件
            $dst_file = tempnam($_SERVER["SINASRV_CACHE_DIR"],"TMP_IMG");
        }
        MagickWriteImage($this->magick_handle, $dst_file);
        return $dst_file;
    }    

    /**
     * 打水印
     *
     * @param $src_file 要打水印的图片路径
     * @param $dst_file 生产水印的文件保存路径，为空则生产随机临时文件
     * @return 水印文件路径/false
     */
    public function water_mark($src_file,$dst_file="")
    {
        $this->magick_handle = NewMagickWand();
        if (!MagickReadImage($this->magick_handle, $src_file))
        return false;
        $this->set_mark();
        if(empty($dst_file))
        {
            //建立临时文件
            $dst_file = tempnam($_SERVER["SINASRV_CACHE_DIR"],"TMP_IMG");
        }
        MagickWriteImage($this->magick_handle, $dst_file);
        return $dst_file;
    }

    /**
     * 对内接口
     * 给图片打水印
     *
     */
    protected  function set_mark()
    {

        //尺寸
        $dst_width = MagickGetImageWidth($this->magick_handle);
        $dst_height = MagickGetImageHeight($this->magick_handle);
        //处理水印图
        if ($this->water_mark &#038;&#038; is_file($this->water_mark))
        {
            $magic_water_handle = NewMagickWand();
            MagickRemoveImage($magic_water_handle);
            if (MagickReadImage($magic_water_handle, $this->water_mark))
            {
                MagickScaleImage($magic_water_handle, $dst_width*$this->waterrate, $dst_width*$this->waterrate*MagickGetImageHeight($magic_water_handle)/MagickGetImageWidth($magic_water_handle));//缩放水印到图片的1/5
                if ($this->water_mark_pos == 1)
                {
                    $left = $this->padding;
                    $top = $this->padding;
                }
                elseif ($this->water_mark_pos == 2)
                {
                    $left = $dst_width-$this->padding-MagickGetImageWidth($magic_water_handle);
                    $top = $this->padding;
                }
                elseif ($this->water_mark_pos == 3)
                {
                    $left = $this->padding;
                    $top = $dst_height -$this->padding-MagickGetImageHeight($magic_water_handle);
                }
                elseif ($this->water_mark_pos == 4)
                {
                    $left = $dst_width-$this->padding-MagickGetImageWidth($magic_water_handle);
                    $top =$dst_height -$this->padding-MagickGetImageHeight($magic_water_handle);
                }
                elseif ($this->water_mark_pos == 5)
                {
                    $left = ($dst_width-MagickGetImageWidth($magic_water_handle))/2;
                    $top =($dst_height -MagickGetImageHeight($magic_water_handle))/2;
                }
                MagickCompositeImage($this->magick_handle,$magic_water_handle,MW_OverCompositeOp,$left,$top);
            }
        }
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/php/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world！</title>
		<link>http://www.waimv.com/linux/1/</link>
		<comments>http://www.waimv.com/linux/1/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 13:04:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=1</guid>
		<description><![CDATA[怎么没出全呢。 echo 'hello'; /** * 获取搜索参数数据 * */ function &#38;get_search_params() { global $args, $request_obj; $param_arr = array(); foreach($args as $key) { if ($value = $request_obj-&#62;GetString($key)) { $param_arr[$key] = $value; } else { $param_arr[$key] = NULL; } } return $param_arr; } 我来测试一下代码高亮]]></description>
			<content:encoded><![CDATA[<p>怎么没出全呢。</p>
<pre class="brush:php">echo 'hello';

/**
 * 获取搜索参数数据
 *
 */
function &amp;get_search_params()
{
	global $args, $request_obj;
	$param_arr = array();
	foreach($args as $key)
	{
		if ($value = $request_obj-&gt;GetString($key))
		{
			$param_arr[$key] = $value;
		}
		else
		{
			$param_arr[$key] = NULL;
		}
	}

	return $param_arr;
}</pre>
<p>我来测试一下代码高亮</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/linux/1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
