PHP 5.5 and Windows XP1931 (11/17/2012 12:33:29 PM) comp.lang.php PHP 5.5 will no longer support Windows XP.
Is there a way to still get it running on Windows XP?
Greetings,
Thomas
--
Ce n'est pas parce qu'ils sont nombreux � avoir tort qu'ils ont raison!
(Coluche)... Thomas
ArrayObject - copy or reference528 (8/8/2011 5:28:16 PM) comp.lang.php Please consider the following example code: $array = array( 1, 2, 3 ); $obj = new ArrayObject( $array ); $obj[0] = 42; echo $array[0]; With PHP 5.2.0 this prints 42, with PHP 5.2.4 however, I get 1 (as expec... Thomas
Boolean getter/setter methods and their names2932 (8/28/2009 9:18:56 PM) comp.programming Hello, I have a button object. Among other things, the button can be disabled/enabled and shown or hidden. Now I wonder what is the best way to name the corresponding methods -- and which of them to implemen... Thomas
One class per file2825 (4/30/2009 9:16:06 PM) comp.lang.php Hello, I think it is a good idea to put each single class (or interface) in a separate file. Some classes or interfaces, however, may be really tiny, like and I hesitate to start a new file just for that. ... Thomas
ArrayObject - no prop access after deserialization522 (1/7/2009 5:51:46 PM) comp.lang.php Hello, This code $o = new ArrayObject( array( 'foo' => 1, 'bar' => 2 ), ArrayObject::ARRAY_AS_PROPS ); var_dump( $o['foo'] ); var_dump( $o->foo ); $o = unserialize( s... Thomas
Generators and their next() and send() methods710 (11/15/2008 6:00:29 PM) comp.lang.python Hello, I was playing around a bit with generators using next() and send(). And I was wondering why an extra send() method was introduced instead of simply allowing an argument for next(). Also, I find it a ... Thomas
My first Python program -- a lexer2714 (11/8/2008 8:55:51 PM) comp.lang.python Hello, I started to write a lexer in Python -- my first attempt to do something useful with Python (rather than trying out snippets from tutorials). It is not complete yet, but I would like some feedback -- ... Thomas
LL(1) Parser - methods for accessing token stream819 (11/7/2008 8:19:12 PM) comp.programming Hello, I want to write a lexer which turns text input into a stream of tokens. The token stream is then to be processed by a parser, but I am not sure which are the "minimal" methods needed for the general c... Thomas
preg_match at offset810 (11/1/2008 1:06:24 PM) comp.lang.php Hello, I want to split a given string into tokens which are defined by regexes: // example tokens - a bit more complex in real $tokens = array( 'NUMBER' => '~^\d+~', 'NAME' => '~^[A-Za-z]+~', ... Thomas
Stupid JOIN quesion1240 (9/22/2008 12:19:02 PM) comp.databases.mysql Hello, If I have the following tables: first second Id Foo Id Bar 1 10 3 35 2 20 4 45 3 30 And I want this result: Id Foo Bar 1 10 NULL 2 20 NULL 3 30 35 4 NULL 45 What kind... Thomas
A little tip3311 (3/30/2012 5:02:50 PM) comp.lang.php Here is something I jist came across, so I am passing it on: ========== $val= TRUE; $val &= TRUE; print ($val === TRUE) ? "Triple is true\n" : "Triple is false\n"; print ($val == TRUE) ? "Double is true\n" : "D... sheldonlg1(118)
pass arbitrary vars into a func from another func?318 (4/4/2012 5:52:17 PM) comp.lang.php In wordpress and probly other software, there are functions you can use to echo stuff into your page. just call comments_number('0','1','%'); and it echo the number of comments for the post. The problem is, y... juglesh689(16)
Does PHP5 treat $_SERVER['PHP_AUTH_USER']) differently?230 (4/12/2012 2:31:33 PM) comp.lang.php Hi guys, I was working on an old script last night, which was partly written by a friend. It seems he used these variables: $_SERVER['PHP_AUTH_USER']) $_SERVER['PHP_AUTH_PW']) However, these variables use... fenner.m(1)
object id - where?630 (4/26/2012 9:34:12 AM) comp.lang.php Hi, is there something like an object id accessible? Example: I do this php > $a = new stdclass; php > $a->b = new stdclass; php > var_dump($a); object(stdClass)#1 (1) { ["b"]=> object(stdClass)#2 (0) { ... sorry_no_mail_here(506)
Change type of <input>343 (5/13/2012 9:38:05 AM) comp.lang.javascript I try to change the type of an element from 'text' to 'password'. No problem in FF an Chrome but IE8 will not allow it. In below code it stops in the function saying (translated from Dutch) "cannot retrieve a... tdeneef(107)
in_array performance in unsorted vs sorted array515 (5/23/2012 6:20:19 AM) comp.lang.php I am reading transaction records from files. Each record has an alphanumeric GUID but that record may be repeated in more than one file (because of overlapping samples). I don't want to process duplicate r... noreply3063(17)
On the usage of "@" (error control operator)1117 (5/23/2012 1:17:38 PM) comp.lang.php Hi, A few weeks ago, I wrote this sentence: @$retVal = $this->lastfetch[$ndx]; Yesterday, browsing the manual, I found this paragraph: "PHP supports one error control operator: the at sign (@). _When pre... leonardo1(51)
PHP 5.5 and Windows XP1931 (11/17/2012 12:33:29 PM) comp.lang.php PHP 5.5 will no longer support Windows XP.
Is there a way to still get it running on Windows XP?
Greetings,
Thomas
--
Ce n'est pas parce qu'ils sont nombreux � avoir tort qu'ils ont raison!
(Coluche)... thomas4089(238)
Fatal error!48 (3/24/2013 10:43:07 AM) comp.lang.php
Hi,
I'm a newbye of PHP, why it gives me this error:
Fatal error: Maximum execution time of 60 seconds exceeded in
C:\xampp\htdocs\ord.php on line 30
Is there a time limits?
This is the script tha... no1671(1)
bug in is_numeric994 (5/12/2013 2:22:10 PM) comp.lang.php
Using PHP 5.3.6 on win7-74
if(is_numeric('x11.11c') returns TRUE
and variations eg: z1111x is also true
this does not seem right to me.
I've done a search but cant find mention in buglist.
... email4172(40)