User VolkerK - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T20:30:03Zhttp://stackoverflow.com/feeds/user/4833http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1866344/what-does-in-data-do/1866365#18663651Answer by VolkerK for What does & in &$data do?VolkerK2009-12-08T11:26:32Z2009-12-08T11:26:32Z<p>The & in &$data marks it as a reference.<br>
<a href="http://docs.php.net/references" rel="nofollow">http://docs.php.net/references</a> explains how they work in php.</p>
http://stackoverflow.com/questions/1862809/save-datetime-in-mysql-using-php/1862833#18628330Answer by VolkerK for save datetime in mysql using phpVolkerK2009-12-07T20:55:49Z2009-12-07T20:55:49Z<pre><code>INSERT ... (Now(), ...)
</code></pre>
<p>without additional quotes around the function Now()</p>
http://stackoverflow.com/questions/1862329/php-uppercase-to-lowercase-rewrite-optimization/1862447#18624471Answer by VolkerK for PHP uppercase to lowercase rewrite optimization?VolkerK2009-12-07T19:49:05Z2009-12-07T19:49:05Z<p>Instead of comparing the original string and the result of preg_replace() you could let preg_match() test, if there is an upper case letter in the string.</p>
<pre><code>if ( preg_match('/[[:upper:]]/', $_SERVER['REQUEST_URI']) ) {
if ( false===stripos($trailed, 'adminpanel') && false===stripos($trailed, 'search') {
// strotolower
// ...
}
}
</code></pre>
<p>(This might not be relevant now but as a side note: pcre has some unicode support. Instead of [:upper:] you'd use \p{Lu} to test for unicode upper case letters, see <a href="http://www.pcre.org/pcre.txt" rel="nofollow">http://www.pcre.org/pcre.txt</a>)</p>
http://stackoverflow.com/questions/1861966/php-clean-up-permutated-array/1862371#18623711Answer by VolkerK for PHP Clean Up Permutated ArrayVolkerK2009-12-07T19:37:59Z2009-12-07T19:37:59Z<p>You can also use the pear package <a href="http://pear.php.net/package/Math_Combinatorics" rel="nofollow">Math_Combinatorics</a>.</p>
<pre><code>require_once 'Combinatorics.php';
$combinatorics = new Math_Combinatorics;
$a = array('a', 'b', 'c');
// creating and storing the combinations
for($combinations = array(), $n=1; $n<=count($a); $n++) {
$combinations = array_merge($combinations, $combinatorics->combinations($a, $n));
}
// test output
foreach($combinations as $c) {
echo join(', ', $c), "\n";
}
</code></pre>
<p>prints</p>
<pre><code>a
b
c
a, b
a, c
b, c
a, b, c
</code></pre>
http://stackoverflow.com/questions/1861967/php-mysql-file-contents-escape-problem/1862057#18620570Answer by VolkerK for PHP MYSQL file contents escape problemVolkerK2009-12-07T18:48:00Z2009-12-07T18:48:00Z<p>Beside the escaping problem you might run into "packet too large" errors if the (MySQL) system variable <a href="http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_max_allowed_packet" rel="nofollow">max_allowed_packet</a> is set to a "small" value.<br>
Using the mysqli extension, prepared statements and <a href="http://docs.php.net/mysqli-stmt.send-long-data" rel="nofollow">mysqli_stmt::send_long_data</a> you can avoid both problems.</p>
http://stackoverflow.com/questions/1860903/continue-not-going-to-loop-start/1860918#18609183Answer by VolkerK for Continue not going to loop startVolkerK2009-12-07T16:00:49Z2009-12-07T16:00:49Z<p><a href="http://docs.php.net/continue" rel="nofollow">http://docs.php.net/continue</a> says:</p>
<blockquote>continue is used within looping structures to skip the rest of the current loop iteration [...]<br />
Note: Note that in PHP the switch statement is considered a looping structure for the purposes of continue.</blockquote>
http://stackoverflow.com/questions/1860740/powershell-regex-question-involving-balancing-parenthesis/1860894#18608941Answer by VolkerK for Powershell regex question involving balancing parenthesisVolkerK2009-12-07T15:56:34Z2009-12-07T15:56:34Z<p>Traditionally regular expressions are not capable of testing for/matching balanced parentheses. But several libraries have made extensions that allow some recursion. E.g. <a href="http://www.pcre.org/pcre.txt" rel="nofollow">pcre</a> with its ?R "quantifier". And Microsoft has added "<a href="http://msdn.microsoft.com/en-us/library/bs2twtah.aspx#BalancingGroupDefinitionExample" rel="nofollow">balancing groups</a>". You can find an example of that feature for matching (...) at <a href="http://oreilly.com/catalog/regex2/chapter/ch09.pdf" rel="nofollow">http://oreilly.com/catalog/regex2/chapter/ch09.pdf</a></p>
http://stackoverflow.com/questions/1860130/how-to-bind-sql-variables-in-php/1860154#18601542Answer by VolkerK for How to bind SQL variables in Php?VolkerK2009-12-07T14:01:28Z2009-12-07T14:01:28Z<p>There's e.g. <a href="http://docs.php.net/pdo" rel="nofollow">PDO</a>.<br>
An introduction to pdo and prepared statements (including bound parameters) is located at <a href="http://docs.php.net/pdo.prepared-statements" rel="nofollow">http://docs.php.net/pdo.prepared-statements</a></p>
http://stackoverflow.com/questions/1857360/strange-behaviour-unlink-not-deleting-files-in-php/1857517#18575171Answer by VolkerK for Strange Behaviour : unlink not deleting files in php VolkerK2009-12-07T02:45:16Z2009-12-07T02:56:25Z<p>readdir() returns the filename without the path. So, in your script instead of <code>filemtime(/home/xmlcontainer/TestInput.xml)</code> only <code>filemtime(TestInput.xml)</code> is executed.</p>
<p>Also $incoming_files contains a single file name (as string) within your while-loop. The nested <code>foreach($incoming_files as ...)</code>will never work.</p>
<p>btw: why do you format the timestamp via date() and then compare the resulting strings against each other?</p>
<pre><code>$file = fopen("pid.txt","w+") or die('!fopen');
flock($file, LOCK_EX);
//Folder where xml files will be coming in from UPC
$incoming_file_path = "/home/xmlcontainer";
$processing_file_path = "/home/process_file";
$threshold = time() - 30;
foreach( glob($incoming_file_path.'/*') as $source ) {
if ( filemtime($source) <= $threshold ) {
// copy / move
// process
// unlink
}
}
flock($file,LOCK_UN);
</code></pre>
http://stackoverflow.com/questions/1857154/how-do-i-skip-a-breakpoint-a-set-number-of-times-in-javas-jdb/1857243#18572431Answer by VolkerK for How do I skip a breakpoint a set number of times in Java's jdb?VolkerK2009-12-07T01:11:34Z2009-12-07T01:11:34Z<p>Would using an ide like <a href="http://eclipse.org" rel="nofollow">eclipse</a> or <a href="http://netbeans.org" rel="nofollow">netbeans</a> be acceptable for you?<br>
Both offer hitcounters and other forms of <a href="http://wiki.eclipse.org/FAQ_How_do_I_set_a_conditional_breakpoint%3F" rel="nofollow">conditional breakpoints</a>.</p>
http://stackoverflow.com/questions/1856260/why-cant-i-create-a-doctrine-model-named-album/1856789#18567891Answer by VolkerK for Why can't I create a Doctrine model named 'Album'VolkerK2009-12-06T22:11:14Z2009-12-06T22:23:14Z<p>If the option <a href="http://www.doctrine-project.org/documentation/manual/1_2/en/yaml-schema-files#using-schema-files" rel="nofollow">generateBaseClasses</a> is set (default) generateModelsFromYaml() will in your case create a class <code>AlbumBase</code> (by default in the subdirectory <code>generated</code>) and an empty class <code>Album extends AlbumBase</code>. I.e. if <code>Album</code> is instantiated <code>AlbumBase</code>must already been known or loaded by some autoloader.</p>
http://stackoverflow.com/questions/1850843/apply-code-to-all-looped-items-but-last-one/1850996#18509960Answer by VolkerK for apply code to all looped items but last oneVolkerK2009-12-05T03:02:14Z2009-12-05T03:02:14Z<p>You can avoid copying all the data before processing it if you fetch a record in advance before printing it (or the other way round: process the previously fetched record)</p>
<pre><code>foreach( $pdo->query('SELECT x FROM foo') as $r) {
if ( isset($row) ) {
echo '<span>', $row['x'], '</span>';
}
$row = $r;
}
if ( isset($row) ) {
echo $row['x'];
}
</code></pre>
http://stackoverflow.com/questions/1850897/how-to-include-specific-filename-from-multiple-directories-using-php/1850978#18509781Answer by VolkerK for How to include specific filename from multiple directories using PHPVolkerK2009-12-05T02:51:38Z2009-12-05T02:51:38Z<p>You can use the SPL's <a href="http://de.php.net/manual/en/class.recursivedirectoryiterator.php" rel="nofollow">RecursiveDirectoryIterator</a> to iterate over all files in a directory and its subdirectories.<br>
Then you can use a class extending <a href="http://de.php.net/manual/en/class.filteriterator.php" rel="nofollow">FilterIterator</a> to limit the result to specific files.</p>
<p>e.g.</p>
<pre><code><?php
class EndsWithFilterIterator extends FilterIterator {
protected $s;
public function __construct($s, $it) {
parent::__construct($it);
$this->s = $s;
}
public function accept() {
$c = parent::current();
return false!==stripos($c, $this->s, strlen($c)-strlen($this->s));
}
}
$directory = 'type/';
$it = new EndsWithFilterIterator('admin_view.php',
new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory))
);
foreach($it as $f) {
echo $f, "\n";
// require_once $f;
}
</code></pre>
http://stackoverflow.com/questions/1850647/jquery-validation-plugin/1850700#18507000Answer by VolkerK for jquery validation pluginVolkerK2009-12-05T01:12:31Z2009-12-05T02:33:27Z<p>You specify rules for the fields in the form. They are key/value pairs where the key is the name of the field. </p>
<p>E.g. a form with the fields <em>name</em> and <em>email</em> (from the documentation at <a href="http://docs.jquery.com/Plugins/Validation/validate#options" rel="nofollow">http://docs.jquery.com/Plugins/Validation/validate#options</a>)</p>
<pre><code>$(".selector").validate({
rules: {
// simple rule, converted to {required:true}
name: "required",
// compound rule
email: {
required: true,
email: true
}
}
})
</code></pre>
<p>You can use the <a href="http://framework.zend.com/manual/en/zend.form.elements.html" rel="nofollow">Zend Framework</a> for the php part. It has some <a href="http://framework.zend.com/manual/en/zendx.jquery.html" rel="nofollow">JQuery integration</a>, though not for the Validation plugin (yet?).</p>
<p>edit: In your example there is a comma missing between the two elements of your rules literal.</p>
<pre><code><html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#register_box_form").validate( {
rules: {
name: {
required: true,
minlength: 3
},
email: {
required: true,
email: true
}
}
});
});
</script>
</head>
<body>
<form method="post" action="?" id="register_box_form">
<div>
<input type="text" name="name" /><br />
<input type="text" name="email" /><br />
<input type="submit" />
</div>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1849803/are-prepared-statements-a-waste-for-normal-queries-php/1849923#18499230Answer by VolkerK for Are Prepared Statements a waste for normal queries? (PHP)VolkerK2009-12-04T21:58:41Z2009-12-04T22:19:06Z<p>When using sql queries like <code>SELECT x,y,z FROM foo WHERE c='mary had a little lamb'</code> the server has to parse the sql statement including the data + you have to sanitize the "mary had..." part (a call to mysql_real_escape() or similar for each parameter).
Using prepared statements the server has to parse the statement, too, but without the the data and sends back only an identifier for the statement (a tiny tiny data packet). Then you send the actual data without first sanitizing it. I don't see the overhead here, though I freely admit I've never tested it. Have you? ;-) </p>
<p>edit: And using prepared statements can eliminate the need to convert each and every parameter (in/out) to strings. Probably even more so if your version of php uses <a href="http://de.php.net/mysqlnd" rel="nofollow">mysqlnd</a> (instead of the "old" libmysql client library). Haven't tested the performance aspect of that either.</p>
http://stackoverflow.com/questions/1849867/how-do-i-glue-c-library-to-the-php/1849948#18499482Answer by VolkerK for How do I glue c++ library to the phpVolkerK2009-12-04T22:03:02Z2009-12-04T22:03:02Z<p>Take a look at <a href="http://www.swig.org/" rel="nofollow">the Simplified Wrapper and Interface Generator</a>:</p>
<blockquote>SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. SWIG is used with different types of languages including common scripting languages such as Perl, PHP, Python, Tcl and Ruby</blockquote>
<p>edit: the documentation for the php module is located at <a href="http://www.swig.org/Doc1.3/Php.html#Php_nn1" rel="nofollow">http://www.swig.org/Doc1.3/Php.html#Php_nn1</a></p>
http://stackoverflow.com/questions/1849448/use-jquery-on-dom-that-has-been-added-afterwards-with-jquery/1849467#18494671Answer by VolkerK for use jquery on DOM that has been added afterwards with jquery?VolkerK2009-12-04T20:29:33Z2009-12-04T20:40:13Z<p>Your <code>function(data)</code> handler is invoked when the ajax request <em>is finished</em> (all data present). In the meanwhile the execution of the script continues. Meaning that your <code>$("#new_link")...</code> code most likely is executed before the data has been added to the dom.<br>
Either use a <a href="http://docs.jquery.com/Events/live" rel="nofollow">live handler</a> or at least move your $("#new_link") code inside the funtion(data) { } handler.</p>
<p>edit: example code</p>
<pre><code>$(document).ready( function(){
$.post("static/js/jquery_call.php", function(data){
$("#div_id").html(data).find("#new_link").click( function() {
alert("Test");
});
});
});
</code></pre>
http://stackoverflow.com/questions/1846542/postgresq-get-table-definition-pggettabledef/1846616#18466160Answer by VolkerK for Postgresq, get table definition, pg_get_tabledefVolkerK2009-12-04T12:21:04Z2009-12-04T13:02:52Z<p>Take a look at the <code>\dt</code> command at <a href="http://www.postgresql.org/docs/8.4/interactive/app-psql.html" rel="nofollow">http://www.postgresql.org/docs/8.4/interactive/app-psql.html</a> </p>
<p>You might want to start the terminal with the -E parameter<blockquote>-E<br>
--echo-hidden<br>
Echo the actual queries generated by \d and other backslash commands.
You can use this to study psql's internal operations. This is equivalent to setting the variable ECHO_HIDDEN from within psql. </blockquote></p>
<p>edit and btw:</p>
<p><a href="http://markmail.org/message/3obwktwfnxfwspxg?q=pg_get_tabledef+type%3Aannouncements" rel="nofollow">http://markmail.org/message/3obwktwfnxfwspxg?q=pg_get_tabledef+type%3Aannouncements</a>:</p>
<blockquote>
== PostgreSQL Weekly News - March 31 2007 == <br />
[...}<br />
Bruce Momjian committed:<br />
[...]<br />
- Remove TODO due to lack of interest: "Add pg_get_acldef(), pg_get_typedefault(), pg_get_attrdef(), pg_get_tabledef(), pg_get_domaindef(), pg_get_functiondef()."
</blockquote>
http://stackoverflow.com/questions/1846681/store-complete-request-in-a-php-variable/1846765#18467652Answer by VolkerK for Store complete request in a PHP variableVolkerK2009-12-04T12:48:05Z2009-12-04T12:54:30Z<p>I don't think php can get hold of the headers part of the raw input stream. (getallheaders()/<a href="http://docs.php.net/apache_request_headers" rel="nofollow">apache _request_headers()</a> has already been mentioned).<br>
But at least you can read the raw post data via the <a href="http://docs.php.net/manual/en/wrappers.php.php" rel="nofollow">php://input stream</a>.</p>
http://stackoverflow.com/questions/1846627/combine-sql-queries-for-simplicity-and-performance-gains/1846667#18466671Answer by VolkerK for Combine SQL queries for simplicity and performance gainsVolkerK2009-12-04T12:29:51Z2009-12-04T12:29:51Z<p>You can use a <a href="http://dev.mysql.com/doc/refman/5.0/en/scalar-subqueries.html" rel="nofollow"> (scalar) subquery</a> to get the count for each "group".</p>
<pre><code>SELECT
*,
(
SELECT
COUNT(*)
FROM
articlelinks
WHERE
articlelinks.iProduct=products.iProduct
) as c
FROM
products
WHERE
iCategory=23
</code></pre>
http://stackoverflow.com/questions/1846529/convert-to-dd-mmm-yyyy/1846545#18465455Answer by VolkerK for Convert to dd/mmm/yyyyVolkerK2009-12-04T12:03:26Z2009-12-04T12:03:26Z<p>Although you specifically asked for a php solution you might also be interested in MySQL's <a href="http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_date-format" rel="nofollow">date_format()</a> function.</p>
<pre><code>SELECT date_format(dt, '%d/%m/%Y') ...
</code></pre>
http://stackoverflow.com/questions/1846344/creating-an-array-of-data-from-a-text-file-with-items-seperated-by-hashes-pound-s/1846390#18463902Answer by VolkerK for Creating an array of data from a text file with items seperated by hashes/pound-symbols with PHP.VolkerK2009-12-04T11:29:11Z2009-12-04T11:57:24Z<p>You can use <a href="http://docs.php.net/fgetcsv" rel="nofollow">fgetcsv()</a> (or <a href="http://docs.php.net/str_getcsv" rel="nofollow">str_getcsv()</a> if you don't have a file handle).</p>
<pre><code>$fp = fopen('test.txt', 'rb') or die('!fopen');
$result = array();
while(!feof($fp)) {
$result[] = fgetcsv($fp, 0, '#');
}
var_dump($result);
</code></pre>
<p>edit: If needed/wanted you can easily make it an associative array. </p>
<pre><code>$fp = fopen('test.txt', 'rb') or die('!fopen');
$keys = fgetcsv($fp, 0, '#');
$result = array();
while(!feof($fp)) {
if ( false!=($row=fgetcsv($fp, 0, '#')) ) {
$result[] = array_combine($keys, $row);
}
}
var_dump($result);
</code></pre>
<p>(you might want to "stretch" that code a little for more error handling)</p>
<p>Or add/replace the keys at a later time. E.g. (using a closure, php 5.3+ only)</p>
<pre><code>$fp = fopen('test.txt', 'rb') or die('!fopen');
$result = array();
while(!feof($fp)) {
$result[] = fgetcsv($fp, 0, '#');
}
// if there is a line break after the last record
// you might want to remove the empty entry
array_filter($result);
// get the field names and combine them with each record
$keys = array_shift($result);
$result = array_map( function($e) use($keys) { return array_combine($keys, $e); } , $result);
var_dump($result);
</code></pre>
http://stackoverflow.com/questions/1843346/php-pushing-pattern-from-array1-to-array2/1843949#18439490Answer by VolkerK for php pushing pattern from array1 to array2VolkerK2009-12-03T23:55:06Z2009-12-03T23:55:06Z<p>Time for some fun with the iterators of the <a href="http://docs.php.net/spl" rel="nofollow">Standard PHP Library</a> :-)</p>
<pre><code><?php
$array1 = array (
"hello1,pat1", "hello2,pat1", "hello3,pat1",
"test1,pat2", "test2,pat2",
"foo1,pat3", "foo2,pat3", "foo3,pat3",
"foo4,pat3", "foo5,pat3", "foo6,pat3"
);
// "group by" patN
$foo = array();
foreach($array1 as $a) {
// feel free to complain about the @ here ...to somebody else
@$foo[ strrchr($a, ',') ][] = $a;
}
// split pat3 into chunks of 3
$foo[',pat3'] = array_chunk($foo[',pat3'], 3);
// add all "groups" to a MultipleIterator
$mi = new MultipleIterator(MultipleIterator::MIT_NEED_ANY);
foreach($foo as $x) {
$mi->attachIterator( new ArrayIterator($x) );
}
// each call to $mi->current() will return an array
// with the current items of all registered iterators
foreach ($mi as $x) {
// "flatten" the nested arrays
foreach( new RecursiveIteratorIterator(new RecursiveArrayIterator($x)) as $e) {
echo $e, "\n";
}
echo "----\n";
}
</code></pre>
http://stackoverflow.com/questions/1841308/php-date-comparison/1841324#18413242Answer by VolkerK for PHP date comparisonVolkerK2009-12-03T16:59:36Z2009-12-03T16:59:36Z<p>e.g. via <a href="http://php.net/strotime" rel="nofollow">strtotime</a> and time().<br>
The difference must be less then 86400 (seconds per day).</p>
<pre><code><?php
echo 'now: ', date('Y-m-d H:i:s'), "\n";
foreach( array('2008-02-16 12:59:57', '2009-12-02 13:00:00', '2009-12-02 20:00:00') as $input ) {
$diff = time()-strtotime($input);
echo $input, ' ', $diff, " ", $diff < 86400 ? '+':'-', "\n";
}
</code></pre>
<p>prints</p>
<pre><code>now: 2009-12-03 18:02:29
2008-02-16 12:59:57 56696552 -
2009-12-02 13:00:00 104549 -
2009-12-02 20:00:00 79349 +
</code></pre>
<p>only the last test date/time lays less than 24 hours in the past.</p>
http://stackoverflow.com/questions/1839203/php-htmlspecialchars-and-utf-8/1839240#18392402Answer by VolkerK for php htmlspecialchars and utf-8VolkerK2009-12-03T11:04:38Z2009-12-03T11:04:38Z<p>All characters "handled" by htmlspecialchars() are in the 7-bit/US ascii range. And those are identical (and unmistakable) in the mentioned encodings. So yes, it will do no harm if you don't change the encoding parameter. But I'd encourage you to do so anyway.</p>
http://stackoverflow.com/questions/1838783/time-of-day-script/1838908#18389081Answer by VolkerK for Time of day scriptVolkerK2009-12-03T10:01:35Z2009-12-03T10:56:57Z<p>You can use strtotime and the (php 5.3+) class <a href="http://de.php.net/manual/en/class.datetime.php" rel="nofollow">DateTime</a> to create, compare and format the timestamps and intervals.</p>
<p>e.g. (neither really tested nor <em>exactly</em> in the format you've described):</p>
<pre><code><?php
$now = new DateTime();
$deliveries = array(
'monday' => strtotime('monday 16:30'),
'tuesday' => strtotime('tuesday 16:30')
);
// timestamps in the past are "advanced" one week
foreach($deliveries as &$dt) {
if ( $dt < $now->getTimestamp() ) {
$dt = strtotime('+1 week', $dt);
}
}
// get the diff between 'Now' and the next delivery (smallest timestamp in $deliveries)
$nextDelivery = new DateTime();
$nextDelivery->setTimestamp( min($deliveries) );
$remaining = $nextDelivery->diff($now);
echo $nextDelivery->format(DateTime::RFC2822), " | ", $remaining->format('%d days %H:%i:%S'), "\n";
</code></pre>
<p>edit: without using DateTime:</p>
<pre><code><?php
$now = time();
$deliveries = array(
'monday' => strtotime('monday 16:30', $now),
'tuesday' => strtotime('tuesday 16:30', $now)
);
// timestamps in the past are "advanced" one week
foreach($deliveries as &$dt) {
if ( $dt < $now) {
$dt = strtotime('+1 week', $dt);
}
}
// get the diff between 'Now' and the next delivery (smallest timestamp in $deliveries)
$nextDelivery = min($deliveries);
// (when) a day has exactly 86400 seconds, an hour 3600 seconds, ...
$remaining = array(
'days'=> intval(($nextDelivery - $now) / 86400),
'hours'=> intval( ($nextDelivery - $now) / 3600) % 24,
'minutes'=> intval( ($nextDelivery - $now) / 60) % 60,
'seconds'=> ($nextDelivery - $now) % 60
);
echo 'next: ', date(DateTime::RFC2822, $nextDelivery), "\n";
printf('remaining: %d days %02d:%02d:%02d',
$remaining['days'], $remaining['hours'], $remaining['minutes'], $remaining['seconds']);
</code></pre>
http://stackoverflow.com/questions/1838794/php-image-creation-from-hex-values-in-database/1838812#18388123Answer by VolkerK for PHP image creation from hex values in database VolkerK2009-12-03T09:42:05Z2009-12-03T09:42:05Z<p><code>$x = 0;</code> is executed in each iteration of the while loop. You need to move the initialization in front the loop.</p>
http://stackoverflow.com/questions/1838616/get-meta-information-title-and-all-images-of-any-webpage-using-php/1838653#18386530Answer by VolkerK for Get meta information, title and all images of any webpage using phpVolkerK2009-12-03T09:10:14Z2009-12-03T09:10:14Z<p>"getaddrinfo failed" suggests that your webserver's dns client isn't configured properly. Thererfore php cannot resolve "google.com" to an actual ip address.</p>
http://stackoverflow.com/questions/1832871/mysql-query-doubt/1832896#18328962Answer by VolkerK for Mysql Query doubtVolkerK2009-12-02T13:26:26Z2009-12-02T13:26:26Z<p>If you really can't get rid of two of the three structural identical tables take a look at the <a href="http://dev.mysql.com/doc/refman/5.0/en/union.html" rel="nofollow">UNION</a> operator. The default behaviour is UNION <i>DISTINCT</i> which removes duplicates from the results.</p>
<pre><code> SELECT test_id FROM test1 WHERE q_id=2
UNION DISTINCT
SELECT test_id FROM test2 WHERE q_id=2
UNION DISTINCT
SELECT test_id FROM test3 WHERE q_id=2
</code></pre>
http://stackoverflow.com/questions/1816128/change-serialization-functions-in-php-for-memcached/1816230#18162300Answer by VolkerK for Change serialization functions in PHP for MemcachedVolkerK2009-11-29T18:05:06Z2009-11-29T18:15:55Z<p>If your memcached php module has been compiled with HAVE_JSON_API defined (which I think is true by default since php 5.2. Documentation says "Requires PHP 5.2.10+") you can set the JSON serializer with</p>
<pre><code>$memchache->setOption(Memcached::OPT_SERIALIZER, Memcached::SERIALIZER_JSON);
</code></pre>
<p>(and there are json en-/decoders for many, many languages)</p>
<p>see <a href="http://docs.php.net/memcached.constants" rel="nofollow">http://docs.php.net/memcached.constants</a></p>
http://stackoverflow.com/questions/1862370/php-errors-are-not-displaying-on-the-page-you-are-developing-you-only-have-sftp/1862396#1862396Comment by VolkerK on PHP errors are not displaying on the page you are developing. You only have SFTP Access to change files. How do you display the errors?VolkerK2009-12-07T19:55:48Z2009-12-07T19:55:48Zside note: this won't work for parse errors in the initial script. a) it's another parameter (display_startup_errors) and b) the error occurs before ini_set() is executed.http://stackoverflow.com/questions/1861321/how-to-prevent-multiples-instances-of-a-scriptComment by VolkerK on How to prevent multiples instances of a script?VolkerK2009-12-07T17:35:47Z2009-12-07T17:35:47ZIs your script using the MySQL database in any case? Or some other resources?http://stackoverflow.com/questions/1860903/continue-not-going-to-loop-start/1860918#1860918Comment by VolkerK on Continue not going to loop startVolkerK2009-12-07T16:12:36Z2009-12-07T16:12:36ZThe random sort order doesn't quite solve the "problem" for quickly upvoted answers, yet ;-)http://stackoverflow.com/questions/1860699/soapclient-throws-fault-when-passing-too-much-dataComment by VolkerK on SOAPClient throws fault when passing too much dataVolkerK2009-12-07T15:38:37Z2009-12-07T15:38:37ZCan you be more specific on "fails"? Is there an error/exception message that might shed some light on the problem?http://stackoverflow.com/questions/1857553/how-do-i-use-pregmatchall-with-2-values-and-pregreplace-to-create-2-differentComment by VolkerK on How do I use preg_match_all with 2 values and preg_replace to create 2 different linksVolkerK2009-12-07T03:06:12Z2009-12-07T03:06:12ZDo you want the script to be limited to one specific title (Naruto in your example) and ignore all other lines? If not, what is the expected result for the last three lines (having no chapter number)?http://stackoverflow.com/questions/1850647/jquery-validation-plugin/1850700#1850700Comment by VolkerK on jquery validation pluginVolkerK2009-12-05T02:24:34Z2009-12-05T02:24:34ZYou don't have to use the whole framework to make the forms part available to you. But maybe <a href="http://docs.php.net/filter" rel="nofollow">docs.php.net/filter</a> is something for you.http://stackoverflow.com/questions/1849803/are-prepared-statements-a-waste-for-normal-queries-php/1849923#1849923Comment by VolkerK on Are Prepared Statements a waste for normal queries? (PHP)VolkerK2009-12-04T22:34:27Z2009-12-04T22:34:27ZBut on the other hand you eliminate the escaping routines and the data can be send in another (possibly "better") format. And it's still the same connection (usually within the bounds of the same LAN). Creating a new connection may be costly. But just sending one or two packets more forth and back between the server and client ...how costly is that? In a real world scenario. My <i>guess</i> is you need quite an elaborate test to account for all the factors involved (server configuration, buffers, latency, ...many more). All I can say is that I haven't noticed a <i>significant</i> performance lost yet.http://stackoverflow.com/questions/1849443/can-mysqlpconnect-be-called-multiple-times-in-one-php-page/1849466#1849466Comment by VolkerK on Can mysql_pconnect be called multiple times in one php page?VolkerK2009-12-04T20:48:50Z2009-12-04T20:48:50ZYes. <a href="http://de.php.net/mysql_query" rel="nofollow">de.php.net/mysql_query</a> says: "If the link identifier is not specified, <i>the last link opened by mysql_connect()</i> is assumed.". That's true for mysql_pconnect as well. But I'd urge you to explicitly specify the link identifier, too.http://stackoverflow.com/questions/1848783/xsd-transformation-into-xmlComment by VolkerK on XSD transformation into XMLVolkerK2009-12-04T20:18:06Z2009-12-04T20:18:06ZThere are some related questions you might be interested in (though no php solutions):
<a href="http://stackoverflow.com/questions/761661/tool-to-generate-xml-file-from-xsd-for-testing" rel="nofollow" title="tool to generate xml file from xsd for testing">stackoverflow.com/questions/761661/…</a> ,
<a href="http://stackoverflow.com/questions/307616/xml-instance-generation-from-xml-schema-xsd" rel="nofollow" title="xml instance generation from xml schema xsd">stackoverflow.com/questions/307616/…</a> ,
<a href="http://stackoverflow.com/questions/17106/how-to-generate-sample-xml-documents-from-their-dtd-or-xsd" rel="nofollow" title="how to generate sample xml documents from their dtd or xsd">stackoverflow.com/questions/17106/…</a>http://stackoverflow.com/questions/1846529/convert-to-dd-mmm-yyyy/1846545#1846545Comment by VolkerK on Convert to dd/mmm/yyyyVolkerK2009-12-04T20:06:13Z2009-12-04T20:06:13ZAnd you have to use <code>SELECT *</code> ? It would work with <code>SELECT *, DATE_FORMAT(...) as myDate FROM ...</code> but then MySQL would transmit the date field twice and the advantage that the date field had to be formatted only once is gone.http://stackoverflow.com/questions/1846542/postgresq-get-table-definition-pggettabledef/1846616#1846616Comment by VolkerK on Postgresq, get table definition, pg_get_tabledefVolkerK2009-12-04T12:43:42Z2009-12-04T12:43:42ZIt will show you the sql query to get the information you need. Copy the query, not the result.http://stackoverflow.com/questions/1846627/combine-sql-queries-for-simplicity-and-performance-gains/1846667#1846667Comment by VolkerK on Combine SQL queries for simplicity and performance gainsVolkerK2009-12-04T12:41:49Z2009-12-04T12:41:49Z(As always) better check your query with <code>EXPLAIN SELECT ....</code> to see if you have the proper indices for this query. <a href="http://dev.mysql.com/doc/refman/5.0/en/using-explain.html" rel="nofollow">dev.mysql.com/doc/refman/…</a>http://stackoverflow.com/questions/1846542/postgresq-get-table-definition-pggettabledef/1846616#1846616Comment by VolkerK on Postgresq, get table definition, pg_get_tabledefVolkerK2009-12-04T12:36:30Z2009-12-04T12:36:30Z--echo-hidden will show you the query the client terminal used to fetch the information. You can copy&adapt that query in your own code.http://stackoverflow.com/questions/1846529/convert-to-dd-mmm-yyyy/1846546#1846546Comment by VolkerK on Convert to dd/mmm/yyyyVolkerK2009-12-04T12:09:50Z2009-12-04T12:09:50ZThe seconds parameter for date() must be a unix timestamp, not the text representation of a MySQL DATETIME or TIMESTAMP. Therefore you'd have to use the UNIX_TIMESTAMP(date) function in your query, <a href="http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_unix-timestamp" rel="nofollow">dev.mysql.com/doc/refman/…</a>http://stackoverflow.com/questions/1846344/creating-an-array-of-data-from-a-text-file-with-items-seperated-by-hashes-pound-s/1846390#1846390Comment by VolkerK on Creating an array of data from a text file with items seperated by hashes/pound-symbols with PHP.VolkerK2009-12-04T11:52:16Z2009-12-04T11:52:16Zarray_combine to the rescue ;)