2
votes
PHP: intval() equivalent for numbers >= 2147483647
Either use number_format($inputNumber, 0, '', '')
Or if you only want to check if its a whole number then use ctype_digit($inputNumber)
Don't use the propo …
0
votes
Generating ZIP files with PHP + Apache on-the-fly in high speed?
Use e.g. the PhpConcept Library Zip library.
Resuming must be supported by your webserver except the case where you don't make …
5
votes
0
votes
Step by step tutorial for xinc?
I don't know about the conf.d file but the build.xml should be a Phing-build file.
Phing is the build system much like Ant or similar
…
1
vote
PHP output buffer stacking question/problem
Why don't you just write
echo "1x"."<br>";
echo "3x"."<br>";
echo "2x"."<br>";
…
0
votes
How do I convert these coordinates to google maps readable coordinates?
Umm the page you mention already gives you the coordinates in WGS84 and in Latitude Longitude format
…
0
votes
PHP - urlencode vs rawurlencode?
echo rawurlencode('http://www.google.com/index.html?id=asd asd');
yields
http%3A%2F%2Fwww.google.com%2Findex.html%3Fid%3Dasd%20asd
while …
1
vote
Detecting whether a user is behind a proxy
By looking for the following header fields you should some proxys.
VIA
FORWARDED
USERAGENT_VIA
X_FORWARDED_FOR
PROXY_CONNECTION
XPROXY_CONNECTION
HTTP_PC_REMOTE_ADDR
HTTP_CLIENT_IP
…
2
votes
Wikipedia integration issue - need to finally sort this out 101
How about using one of the Wikipedia Geocoding Webservices
There are several avail …
1
vote
How to gracefully handle a downed API
Use curl_setopt
curl_setopt($yourCurlHandle, CURLOPT_CONNECTTIMEOUT, '1'); // 1 second
…
0
votes
Is there a generic way to route URLs in Kohana when there is the hyphen character in them?
For the camelCase variant I don't know but something like this should work
$config['(a-z)+-?(a-z)*/(a-z)+-?(a-z)*'] = '$1$2/$3$4';
As the route part in kohana is a …
2
votes
How can I check if a word is contained in another string using PHP?
strpos
<?php
$text = "I go to school";
$word = "to"
$pos = strpos($text, $word);
if ($pos === false …
7
votes
PHP shell execute - Without waiting for a return
How about adding.
"> /dev/null 2>/dev/null &"
shell_exec('php measurePerformance.php 47 844 email@yahoo.com > /dev/null 2>/dev/null &');
Note …
1
vote
How to stop html header content from being included in jquery post results?
Just add an
exit;
statement in the file where you output your response data. Directly after you have output all you want as response body.
simplified examp …
4
votes
Percent symbol in codeigniter URI
Put the "-" at the end of the string otherwise it gets interpreted as range. The % is already in the allowed character list as you can see.
$config['permitted_uri_c …
