Re: [PHP] Object to array conversion oddity

2006-09-26 Thread Marcus Bointon
until I fix it properly. The original question wasn't whether it was a good idea or not, but that it didn't act as the docs said it did. In the mean time, you might like to know that this behaviour IS apparently considered correct and a patch to documentation has been committed.

Re: [PHP] Object to array conversion oddity

2006-09-24 Thread Marcus Bointon
posting on -users, as they suggest), but occasionally they just don't read the report - in this case I was referred to the documentation, which agrees 100% with my complaint! Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTED] | http://ww

Re: [PHP] Object to array conversion oddity

2006-09-24 Thread Marcus Bointon
ot;]=> NULL ["c:protected"]=> NULL ["A:private"]=> NULL } ["c"]=> NULL } Reference preserved. It's not like I care about PHP4, nor am I doing a deep conversion. Marcus -- Marcus Bointon Synchromedia Limited: Creators of http:/

Re: [PHP] Object to array conversion oddity

2006-09-24 Thread Marcus Bointon
I not helping by pointing out there's a problem in the first place? It's a lot more constructive than being rude. Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTED] | http://www.synchromedia.co.uk/ -- PHP General Mailing List (

Re: [PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
ay[$matches[2]] = $value; } else { //It's a public property $propArray[$key] = $value; } } return $propArray; } Works nicely for me. Marcus -- Marcus Bointon Synchromedia Limited: Creators of h

Re: [PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
any circumstances in which it is preferable to using reflection (unless it's a relic from PHP4?). What's next - appending a creation time to integers when they're cast into strings? Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTE

Re: [PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
extra info in a marginally less destructive way, for example by adding 'private' and 'protected' array properties containing field names for each access level to the resulting array. OTOH, that would break what you'd expect count() to deliver after the conversion. I re

Re: [PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
want it to act just like the docs say it does, and if you don't, you should probably be using the object itself anyway. Bug report is here: http://bugs.php.net/?id=38935 Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTED] | http://ww

Re: [PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
t;]=> string(0) "" ["Myclassfield2"]=> string(0) "" ["*field3"]=> string(0) "" } So it seems protected fields behave differently too. Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTED] | http://www.synchromedia.co.uk/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
ar in a variable name, but it's fine as an array index. Try a test with multiple public and multiple private variables. If the format of the array keys stays the same, then you should have your answer. In my real code I do have multiple fields all exhibiting this behaviour. I'

[PHP] Object to array conversion oddity

2006-09-23 Thread Marcus Bointon
; string(0) "" } The docs (http://www.php.net/manual/en/language.types.array.php) say: "If you convert an object to an array, you get the properties (member variables) of that object as the array's elements. The keys are the member variable names." It se

Re: [PHP] Recommendations for PHP debuggers?

2006-08-21 Thread Marcus Bointon
y of stack traces alone makes it worthwhile IMHO. Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTED] | http://www.synchromedia.co.uk/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: loop in horizontal direction (php-html)

2006-08-10 Thread Marcus Bointon
s on a single page; This is a very good way of making a browser go very slowly and eat lots of memory. Marcus -- Marcus Bointon Synchromedia Limited: Creators of http://www.smartmessages.net/ [EMAIL PROTECTED] | http://www.synchromedia.co.uk/ -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] $_SERVER['REMOTE_ADDR'] arriving in IPv6

2006-05-18 Thread Marcus Bointon
eat for me. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] $_SERVER['REMOTE_ADDR'] arriving in IPv6

2006-05-18 Thread Marcus Bointon
INET_ATON() function. I have ipv6 networking disabled in my network control panel, and my PHP is configured with --disable-ipv6. How can I force it to return only ipv4 addresses? Is there an ini setting somewhere? Thanks, Marcus -- Marcus Bointon Synchromedia Limited: Putting you in t

[PHP] Beware of OS X PHP security update...

2006-03-03 Thread Marcus Bointon
o anything. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Compiling PHP with freetype2 on MacOS X

2006-02-24 Thread Marcus Bointon
;ve looked in /sw/lib/freetype2/include/freetype2/ freetype/freetype.h and the missing constants are correctly defined in there, and also in /usr/X11R6/include/freetype2/freetype/ freetype.h Those files should be found using the paths I gave in configure. Anyone got any idea how I can fi

Re: [PHP] Recompile PHP on pre-installed system

2006-02-07 Thread Marcus Bointon
s rarely a dependency for apps installed through rpm. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail() and Return-Path header

2006-02-06 Thread Marcus Bointon
o guarantee that you get tracable bounces - MS Exchange server sometimes bounces messages with no indication of the address the original message was sent to! Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP Gener

Re: [PHP] Wysiwyg editors?

2006-02-01 Thread Marcus Bointon
fckeditor is working great for me from PHP. http://www.fckeditor.net/ http://tinymce.moxiecode.com/ Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] Class constructor

2006-02-01 Thread Marcus Bointon
/This will be called in PHP4 } function __construct(){ //This will be called in PHP5 } } Why penalise the platform you're intending to run it on? Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchrome

Re: [PHP] HTML rendering extension?

2005-12-21 Thread Marcus Bointon
Flipside - it's not working for me... Thanks very much for the tip, very glad to have finally found a solution. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] HTML rendering extension?

2005-12-21 Thread Marcus Bointon
arcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HTML rendering extension?

2005-12-21 Thread Marcus Bointon
nearly far enough. Alternatively something like a CLI option to firefox to run without X (i.e. no visible windows) and output to a file instead of a display device. The options here don't indicate that it can do that: http://kb.mozillazine.org/Command_line_arguments Any other ideas? M

Re: [PHP] forking off in php

2005-11-21 Thread Marcus Bointon
ve something similar by not forking and using nohup (look it up with man) with &, however, that will mean it runs as you, whereas a forked process can easily switch users and drop privileges for increased security. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the pictu

Re: [PHP] forking off in php

2005-11-21 Thread Marcus Bointon
r 9 months without a break. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] using ($test)?$true:$false in a string

2005-11-21 Thread Marcus Bointon
n you both speed and security, plus it's supported very nicely in PDO in PHP 5.1. A tangent I know, but a useful one nonetheless. Hey, and I remember when "print using" was considered a 'power user' feature in BASIC in 1981! Marcus -- Marcus Bointon Synchrom

Re: [PHP] Sorting users geographically...

2005-11-21 Thread Marcus Bointon
-geometries.html Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP 4.4.1 on Apache 2.0.x issue

2005-11-21 Thread Marcus Bointon
and report any bugs in the bug system, but only if you have a short reproducable test case. If everything goes well, we can release it next tuesday. Especially test issues with mod_rewrite and Apache 2 please! Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PR

Re: [PHP] APC caching keys.

2005-11-21 Thread Marcus Bointon
t be found from (it is reported as having come from your __autoload function). You need a stack trace to figure out where the original problem occurred - xdebug works a treat (but it won't mix with APC). Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMA

Re: [PHP] using ($test)?$true:$false in a string

2005-11-21 Thread Marcus Bointon
eem, you'll probably find that this is the fastest method: 'first part of string '.(($a==$b)?$c:$d).' rest of string' I benchmarked this a while ago and was surprised to find that multiple concats with single quotes are significantly faster than interpolation. Mar

Re: [PHP] php5 call by refference

2005-11-21 Thread Marcus Bointon
a, $b) { $a = $a.$b; } If you call this as you asked, where would the result go? Is there some sort of workaround ? As was suggested, put your values in variables before calling the function, though the code example you posted suggests you're trying to do something odd. Marcus

Re: [PHP] APC caching keys.

2005-11-21 Thread Marcus Bointon
11:49:05. Nothing special was needed. The current 3.0.8 release of APC is broken in PHP 5.1.0-dev if you ever use __autoload. It will be fixed in 3.0.9 (and is fixed in CVS), though Rasmus implied that 3.0.9 is waiting until 5.1 release. Marcus -- Marcus Bointon Synchromedia Limited: Putting y

Re: [PHP] mod_rewrite and include paths

2005-11-21 Thread Marcus Bointon
rks fine. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Set Timezone to localtime in php.ini

2005-11-18 Thread Marcus Bointon
date.timezone ini setting. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is echo tag reasonably portable?

2005-11-18 Thread Marcus Bointon
sing short tags. Admittedly it is on in php.ini-dist, but that's not recommended is it ;^) Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Newbie to PHP5

2005-11-15 Thread Marcus Bointon
migration.php If you want a book: http://www.oreilly.com/catalog/upgradephp5/ Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Printing to a buffer

2005-11-14 Thread Marcus Bointon
t don't do downloads at all (I've written some), there are others that do nothing but downloads (I use Interarchy for just that). I could offer a similar opinion about the browsers that have odd implementations of content-disposition. Marcus -- Marcus Bointon Synchromedia Limited

Re: [PHP] mod_rewrite and include paths

2005-11-14 Thread Marcus Bointon
n is supposed to deal with, but removing it doesn't help either. Maybe I should look more carefully at my RewriteBase etc. I've asked in sitepoint apache forums too, see if anyone there has any idea. Thanks for the ideas. Marcus -- Marcus Bointon Synchromedia Limited: Putti

Re: [PHP] mod_rewrite and include paths

2005-11-13 Thread Marcus Bointon
ng just 'echo getcwd();' seems to fail completely when called via a rewrite. After all that, smarty still can't find its templates_c for some reason. I'm sure there must be something simple and elegant I'm missing. Probably a good night's sleep. Marcus -- Marcu

[PHP] mod_rewrite and include paths

2005-11-13 Thread Marcus Bointon
my global include_path as there may be multiple independent deployments of the same scripts on the server, and I don't want them including each others files. Adding .. to the path would work but is a security risk. Any other ideas? Marcus -- Marcus Bointon Synchromedia Limited: Put

Re: [PHP] Printing to a buffer

2005-11-13 Thread Marcus Bointon
x27;ll be round later. Todd, I think you should read this: http://support.microsoft.com/kb/ q260519/ There's a PHP example just before the user notes here: http:// www.php.net/header Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://ww

Re: [PHP] Printing to a buffer

2005-11-13 Thread Marcus Bointon
t recognise the (invalid) MIME-Type. Quite - it's right up there with 'application/force-download'. If you want to suggest (the final choice is not yours to make) that a browser might download something instead of displaying it, set an appropriate content-disposition header inste

Re: [PHP] Recommendations for the Zend PHP Certification

2005-11-13 Thread Marcus Bointon
st on their site. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php session in ie

2005-11-11 Thread Marcus Bointon
site in IE. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mod_rewrite, apache2, php5RC1 and osx bsd

2005-11-11 Thread Marcus Bointon
0there', your resulting URL will be: 'blah.php?x=Hello there', which is obviously broken. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sessions and register_long_arrays

2005-11-05 Thread Marcus Bointon
ster_long_arrays off! Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Richard Lynch's Email Address ...

2005-11-03 Thread Marcus Bointon
On 3 Nov 2005, at 14:16, Richard Heyes wrote: It even has a method specifically for "normal" email addresses of the form [EMAIL PROTECTED] Ah, well, that's good news. It's been a while since I looked at it. Marcus -- Marcus Bointon Synchromedia Limited: Putting you i

Re: [PHP] Re: Richard Lynch's Email Address ...

2005-11-03 Thread Marcus Bointon
tion to it. If an address is not RFC2822 compliant, it's pretty unlikely to work, though I have occasionally seen things like non-ASCII chars and '_' get through. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.u

Re: [PHP] Type of form element

2005-10-31 Thread Marcus Bointon
lutely sure? Yesterday I encountered an error in a large commercial php script and it turned out that it was looking in $_SERVER['SERVER_NAME'] which was there but set to NULL for some reason, and their test with isset was failing. So it's not just academic and I'm not makin

Re: [PHP] Type of form element

2005-10-31 Thread Marcus Bointon
pect to receive an undefined index notice as you have explicitly looked up an array index that does not exist. If you used other functions the same way you're using isset, you would see nothing wrong with this: $myarray = array(); print $myarray['a']; but I would hope that you

Re: [PHP] Type of form element

2005-10-31 Thread Marcus Bointon
bug to track down. Using array_key_exists means you will never be exposed to this possibility, no matter where your data comes from. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (htt

Re: [PHP] php mail function vs smtp server

2005-10-31 Thread Marcus Bointon
way as it makes it much more reliable to deal with all the other stuff like MIME encoding, plus it has support for all these sending methods without having to change much code. I use it with qmail. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture

Re: [PHP] Re: Substr by words

2005-10-31 Thread Marcus Bointon
railing spaces - the subsequent trim fixes them both. I like mine because it has 1 less char ;^) Ultimately, if it works for you, great! Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (htt

Re: [PHP] Type of form element

2005-10-31 Thread Marcus Bointon
_will_ usually work for things that come through the web-driven superglobals, but not all arrays come from there - if you use the same syntax for dealing with databases or your own objects you could be creating some very entertaining bugs. I don't know about you but I often deal with

Re: [PHP] [DONE] Substr by words

2005-10-31 Thread Marcus Bointon
friends is necessarily any clearer. I sometimes find that a nested mass of string functions is even more confusing - at least a regex has a fixed grammar. I've just written a load of stuff that uses preg_replace_callback that I'm quite pleased with. Marcus -- Marcus Bointon Synch

Re: [PHP] Re: Substr by words

2005-10-30 Thread Marcus Bointon
arcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php not activated

2005-10-30 Thread Marcus Bointon
ery($sql) and mysql_num_rows($myquery) > 0) { $mydata = mysql_fetch_array($myquery, MYSQL_NUM); return $mydata[0]; } return false; } Then call it: if ($contents = display()) eval($contents); This should be faster and safer than your original code. Marcus -- Marcus

Re: [PHP] Re: Substr by words

2005-10-30 Thread Marcus Bointon
ring, $matches)) { $result = trim($matches[0]); echo $result; } Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [DONE] Substr by words

2005-10-30 Thread Marcus Bointon
: $text = preg_replace('/ */', ' ', $text); Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Type of form element

2005-10-30 Thread Marcus Bointon
and is_array ($_REQUEST['checkbox_name'])) { if (array_key_exists('option1', $_REQUEST['checkbox_name'])) { echo "you selected option 1\n"; } if (array_key_exists('option2', $_REQUEST['checkbox_name'])) { echo

Re: [PHP] Sessions and register_long_arrays

2005-10-29 Thread Marcus Bointon
On 29 Oct 2005, at 14:48, Marcus Bointon wrote: changing an item in $_SESSION simply does not get saved back to the session file if register_long_arrays is enabled. I meant disabled. I've also tried using it with the mm session save handler and I get the same symptoms. I als

[PHP] Sessions and register_long_arrays

2005-10-29 Thread Marcus Bointon
tem in $_SESSION simply does not get saved back to the session file if register_long_arrays is enabled. Anyone else seen this? Any idea why it might be happening? Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk --

Re: [PHP] PHP version check

2005-10-28 Thread Marcus Bointon
/manual/en/function.version-compare.php to do so reliably. Version strings are messy things. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP] OPTIMIZING - The fastest way to open and show a file

2005-10-14 Thread Marcus Bointon
expected to deliver). Otherwise as Jochem says, use RAM for your cache in the first place. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] prevent user from getting scripts outside the web folder [this better?]

2005-10-14 Thread Marcus Bointon
). It doesn't do anything significantly different to addslashes(), which is purely a PHP internal function. If you are writing database independent code, you should probably prefer addslashes (or things like adodb::qstr). Marcus -- Marcus Bointon Synchromedia Limited: Putting you in t

Re: [PHP] Re: ampersand in dom with utf-8

2005-10-13 Thread Marcus Bointon
s that would be OK. However, if you're using UTF-8 anyway, why not just use the real characters? Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SOAP WSDL location

2005-10-12 Thread Marcus Bointon
WSDL is online after all). This would work, but it's way less efficient. I can't use an absolute path as it's deployed in multiple configurations on multiple servers, and config is bad enough already. Now before I report this as a bug/feature request, does anyone have any bette

Re: [PHP] Global unavailable?

2005-10-05 Thread Marcus Bointon
definition. The original definition is directly inside the included file, and not itself inside a function or class. I should have mentioned that I'm using PHP 5.1-dev, so it could just be bug... Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PR

[PHP] Global unavailable?

2005-10-05 Thread Marcus Bointon
{ function test() { require 'a.inc.php'; global $a; echo $a; } } Is this just how it is, or am I doing something wrong? Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing

[PHP] OS X compile problem with GD

2005-08-30 Thread Marcus Bointon
directly: --with-gd and --with-freetype- dir. The configure script doesn't report any problems: ... checking for GD support... yes checking for the location of libjpeg... /sw checking for the location of libpng... /sw checking for the location of libXpm... no checking for FreeType 1.x support

Re: [PHP] Looking for CMS advice

2005-08-23 Thread Marcus Bointon
rong emphasis on usability over feature bloat. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] __sleep, __wakeup and persistent connections

2005-08-20 Thread Marcus Bointon
exampel, the base class has no properties to save, so it returns an empty array from __sleep, but that's unlikely to be useful for a subclass that does have properties (and serializing an object without any properties is pointless!). Ideas? Marcus -- Marcus Bointon Synchromedia Limited:

Re: [PHP] parallel execution of php code?

2005-08-09 Thread Marcus Bointon
aces where I used to do this. Since MySQL 4.1 I've changed it to something like: "INSERT INTO mytable SET id = 123, bla = '$x' ON DUPLICATE KEY UPDATE bla='$x'" This saves you a query, and makes it easier to isolate the insert/ update as it will

Re: [PHP] Fast count of recordset in php...

2005-08-07 Thread Marcus Bointon
p to 10 in this query - you can find out how many it would have found by then asking: $sql = "SELECT FOUND_ROWS()"; Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regex help

2005-08-03 Thread Marcus Bointon
-5])\]))$ Which I got from here: http://www.hexillion.com/samples/#Regex Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] time()

2005-07-29 Thread Marcus Bointon
SQL-compatible DateTime string, use: $datetime = date('Y-m-d h:i:s', $timestamp); Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] function with argument of type array

2005-07-29 Thread Marcus Bointon
ndling (another PHP5 feature) is next to useless without type hinting, so they HAD to implement it for objects so that catch clauses could work properly. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailin

Re: [PHP] Multipage form redux

2005-07-28 Thread Marcus Bointon
within a session may go to different servers, so file- or memory-based sessions are not much use. Despite this, I also suspect that sessions may not be the way to go. User authentication and management is not a synonym for sessions. Marcus -- Marcus Bointon Synchromedia Limited: Putting you

Re: [PHP] function with argument of type array

2005-07-28 Thread Marcus Bointon
$foo){ There is no way to do that. What you _CAN_ do, to ensure you're getting an array is: There IS a way to do exactly this. It's called type hinting and it's a PHP 5 feature: http://www.php.net/manual/en/language.oop5.typehinting.php Marcus -- Marcus Bointon Synch

[PHP] Class constants

2005-07-28 Thread Marcus Bointon
($a = self::BAR) { echo $a; } } In this case $this->thing will be undefined, but wibble() will get the correct default value for $a. Comments? Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General

Re: [PHP] Multipage form redux

2005-07-28 Thread Marcus Bointon
proach doesn't easily allow to you abandon and resume later (unless you get clever with JS and cookies). For keeping data in a session, you could combine this approach with Ajax: http://particletree.com/features/smart-validation-with-ajax Marcus -- Marcus Bointon Synchromedia Limited

[PHP] Calling methods in returned SOAP objects

2005-07-27 Thread Marcus Bointon
if (queryResult.isDone()) { ... How on earth do I do that in PHP? I don't think that creating PHP classes and using classmap will help (it just moves the problem), at least partly because this is a dynamic WSDL that is subject to change. Marcus -- Marcus Bointon Synchromedia Limited: Pu

[PHP] iconv trouble on OS X

2005-07-21 Thread Marcus Bointon
I wrote this question then found out where the problem was, so this is just for the archives... == I've compiled PHP 5.0.4 successfully on OS X 10.4.2, but I'm getting a weird problem with iconv. I specified it in my configure line: --with-iconv and it seems to pick it up ok w

Re: [PHP] Re: Tracking a mobile phone

2005-07-20 Thread Marcus Bointon
On 18 Jul 2005, at 20:56, Sebastian wrote: The phone would have to have GPS capabilities.. Not true. The network knows what cell the phone is in(and cells are pretty small in cities), and it knows where the cell is. This is the mechanism that's used for location dependent services (especia

Re: [PHP] Overriding __soapCall

2005-07-14 Thread Marcus Bointon
On 14 Jul 2005, at 16:07, Marcus Bointon wrote: I've found various references to overriding the __call function (which is now completely obsolete as it clashes with a magic method) for the same kind of reason that I need to. So, it seems as if __soapCall is NOT called internally

[PHP] Overriding __soapCall

2005-07-14 Thread Marcus Bointon
); but this does not seem to go via the internal __soapCall function, thus denying me the ability to tweak the request on its way through. If I call it manually (i.e. non-WSDL way), something like: $sc->__soapCall('login', array('username' => 'abc', 'p

Re: [PHP] Compilation trouble on OS X

2005-06-13 Thread Marcus Bointon
On 13 Jun 2005, at 10:52, Marcus Bointon wrote: I just tried compiling on a clean install of 10.4, with a clean install of fink (I'm using some fink packages like apache2, JPEG, PNG, etc) and I'm still getting the ld problem I mentioned. Think I may have to report it as a bug an

Re: [PHP] Compilation trouble on OS X

2005-06-13 Thread Marcus Bointon
fink (I'm using some fink packages like apache2, JPEG, PNG, etc) and I'm still getting the ld problem I mentioned. Think I may have to report it as a bug and see what comes of that. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http

Re: [PHP] Making a page loop with header('Location: ...

2005-06-10 Thread Marcus Bointon
y for days at a time. This article I wrote might help: http://www.experts-exchange.com/Web/Web_Languages/PHP/Q_20977409.html Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net

Re: [PHP] Compilation trouble on OS X

2005-06-09 Thread Marcus Bointon
tly speaking this is a linking rather than a compiling problem (i.e. the problem occurs after gcc has finished successfully). It seems that the OS X ld has different options to the GNU or BSD implementations, so I guess I'm really after someone that knows ld well enough. Marcus --

Re: [PHP] Compilation trouble on OS X

2005-06-09 Thread Marcus Bointon
to do with this. PHP's build system is completely independent of XCode. PHP uses normal Unix-type tools such as gcc, make, ld, libtool, autoconf etc. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Ma

[PHP] Compilation trouble on OS X

2005-06-09 Thread Marcus Bointon
the Entropy binaries as they're missing some extensions I need. There are no bugs posted on the PHP tracker that match these errors, so it's clearly not a common problem. Any ideas what might be broken, and how I might fix it? Marcus -- Marcus Bointon Synchromedia Limit

Re: [PHP] Beautiful HTML Invoice -> Prints like crap! I need somesuggestions!

2005-06-09 Thread Marcus Bointon
/articles/printyourway/ http://www.alistapart.com/articles/goingtoprint/ Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5 Question about OO

2005-06-02 Thread Marcus Bointon
talking hypothetically anyway as we don't have autoload methods at present). This thread is meant to be about how to improve automatic include file location - saying not to try to do it at all is not very helpful. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the pi

Re: [PHP] PHP 5 Question about OO

2005-06-02 Thread Marcus Bointon
thods, not global functions. Just plain 'autoload' in a global context is not really anything wildly different in style to say ini_set or error_reporting. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk

Re: [PHP] PHP 5 Question about OO

2005-06-01 Thread Marcus Bointon
to be a standard class method like __construct, so that a class would attempt to run its own autoloader before breaking out to the global function namespace. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP G

Re: [PHP] PHP 5 Question about OO

2005-06-01 Thread Marcus Bointon
P is not case sensitive to class names, the file system you're on probably is, so keep your case consistent throughout. Docs are here: http://www.php.net/manual/en/language.oop5.autoload.php Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | htt

Re: [PHP] [Files suffix] .inc.php files

2005-06-01 Thread Marcus Bointon
. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php + cvs

2005-05-31 Thread Marcus Bointon
anch, do a checkout to this directory'. Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROTECTED] | http://www.synchromedia.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   >