2014-12-09 0:51 GMT+01:00 Andrea Faulds :
>
> https://wiki.php.net/rfc/unicode_escape
Still leaves unmentioned that there was already an established Unicode
escape syntax. PCRE provides \x{1F520} for codepoints in conjunction to
plain \xFF for byte escapes.
Maybe there should be more elaboration
Tue, 9 Dec 2014 02:44:33 + Andrea Faulds :
>
> Well, PCRE does what it does probably because of its name:
> *Perl-Compatible* Regular Expressions. Perl has the \x syntax. But
> PCRE’s syntax comes from what suits Perl, not PHP, so I don’t see why
> we should necessarily match its behaviour. If
2011/10/26 Matthew Weier O'Phinney :
>
> My main point, however, is that the standard was ratified quite some
> time ago already -- we just now have parties interested in creating a
> C-level implementation compatible with the standard to (a) make usage
> simpler, and (b) better optimize performanc
e handy for SplClassLoader and how/why you'd
inherit from it? Have any of the 18+ frameworks tested their autoloading
with it? (Still concerned about customizing.)
> being followed by 18+ widely adopted PHP projects. Which one would you
> choose? An individual user suggestion or a group
2011/11/8 guilhermebla...@gmail.com :
> Ok... I promised to complete the RFC and here I am.
>
> I wrapped the entire idea, PHP implementation of what I'm proposing all in
> RFC.
> If you're interested, feel free to review the document, highlight if I
> missed something and update/add your votes.
>
In 5.3.10 it is still missing just saying
Cheers
On Thu, Dec 8, 2011 at 13:18, Mario Brandt wrote:
> I meant I can't find it ;-) Now I made the bug report 60470[1], but
> you have to assign it yourself.
>
> Cheers
> Mario
>
>
> [1] https://bugs.php.net/bug
decepencies with _must_ installed libs etc.
Mario
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
hey would
>prefer an MSI which just "did it". So, bundle the libs and move on.
I'm one of these Win32 user. Me and others hate *.msi files.
It puts info in the registry and you need to uninstall it over the
control panel.
zip pack is much easier to install / testing and removing.
Hi,
I made some benchmarking on XP Pro.
The new PHP is not always faster, but over all.
Mario
PHP 5.2.5
Benchmark Time Peak MemoryPeak Memory (Real)
---
./benchmarks\ackermann2.222 678144
./benchmarks\simpleucall 1.285 77160 262144
./benchmarks\simpleudcall 1.545 77256 262144
./benchmarks\strcat 0.061 858000 1310720
with PHP6 the test failed
regards
Mario
--
PHP Internals - PHP Runtime Development Mailing List
Just to let you know :-)
Windows 7 built 7000 no updates made (in VMware Workstation 6.5)
Apache 2.2.11 from apachehaus.com
PHP 5.2.8 from php.net
Runs very smooth.
Changes I made was to change the ext path in php.ini(-recommend) and added PHP
as module to httpd.conf
regards
Mario
extension I had no problem.
PHP Warning: PHP Startup: Unable to load dynamic library
'C:/php5/ext\\php_sqlite.dll' - Das angegebene Modul wurde nicht gefunden.\r\n
in Unknown on line 0
regards
Mario
-Ursprüngliche Nachricht-
Von: Guilherme Blanco [mailto:guilhermebla...@gmail.com
The VS9 cli (snapshot from 2009-Feb-04 23:00:00 thread safe)runs. I only tested
some small OOP scripts.
There is no need to install the M$ 2008 C++ Runtime ;-) but I guess you already
knew that.
regards
Mario
-Ursprüngliche Nachricht-
Von: Richard Quadling [mailto:rquadl
Hi,
a bit down I wrote that the VS6 build runs. I took the snapshot from
2009-Feb-04 22:00:00
Tested the module and CLI. Both run fine, but the SQLite extension not.
Mario
-Ursprüngliche Nachricht-
Von: Richard Quadling [mailto:rquadl...@googlemail.com]
Gesendet: Do 05.02.2009 01:10
An
Hello list,
i've extended sqlite_driver to get access to the authorizer-feature of
sqlite. This is my first contact with the Zend-API and my last c skill
is more than a bit outdated.
Could someone review/cleanup my code to get it merged to the
distribution? Hint and comment welcome!
Thanks,
--Wez.
Regards,
Mario
On 11/16/06, Mario Wolff <[EMAIL PROTECTED]> wrote:
> Hello list,
> i've extended sqlite_driver to get access to the authorizer-feature of
> sqlite. This is my first contact with the Zend-API and my last c skill
> is more than a bit outdated.
> C
2006/11/16, Wez Furlong <[EMAIL PROTECTED]>:
I suggest that you adjust your patch to cache the function callback
information in the pdo_dbh_t to reduce some of that overhead, and run
some benchmarks for a simple authorizer function in PHP that always
returns true vs the same script with no author
2006/11/16, Mario Wolff <[EMAIL PROTECTED]>:
2006/11/16, Wez Furlong <[EMAIL PROTECTED]>:
> I suggest that you adjust your patch to cache the function callback
> information in the pdo_dbh_t to reduce some of that overhead, and run
> some benchmarks for a simple authorizer
Short test script:
sqliteSetAuthorizer('auth');
$db->exec( "CREATE TABLE strings( a)");
$insert = $db->prepare( 'INSERT INTO strings VALUES ( ?)');
foreach ( $data as $str) {
$insert->execute( array( $str));
}
$insert = null;
echo "unregister authorizer\n";
$db->sqliteSetAuthorizer();
fun
done!
Array
(
[0] => Array
(
[sqlite_version( *)] => 3.3.7
[0] => 3.3.7
)
)
Array
(
[0] => Array
(
[a] => one
[0] => one
)
[1] => Array
(
[a] => two
[0] => two
)
[2] =
Any suggestions or meanings on it?
Thanks,
Mario
Short test script:
sqliteSetAuthorizer('auth');
$db->exec( "CREATE TABLE strings( a)");
$insert = $db->prepare( 'INSERT INTO strings VALUES ( ?)');
foreach ( $data as $str) {
$insert->execute( array(
Hi,
On Thu, Oct 25, 2012 at 9:59 PM, Antony Dovgal wrote:
> Just use logrotate for that.
On Windows there is no logrotate by defautl, so that would be a nice feature ;)
Cheers
Mario
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
You can use the router script to add that header of your desire into
every request.
Cheers
Mario
On 6 July 2013 01:34, Matthew Leverton wrote:
> On Fri, Jul 5, 2013 at 5:48 PM, Daniel Lowrey wrote:
>> This is not the sort of thing that belongs in an HTTP server by
>> default.
://pastebin.com/raw.php?i=1AU10Adf
Hardware
CPU: Intel T4200 @2GHz
RAM: 4GB
Best
Mario
On Thu, Oct 20, 2011 at 09:50, Lester Caine wrote:
> Bostjan Skufca wrote:
>>
>> Are you talking about general server benchmarks, HTTP server benchmarks or
>> PHP-only specific benchmarks (make tes
gle didn't
found anything worth getting referenced, and I'm really not aware of
an official format spec.
* Btw, "Person & email address to contact for further information" could
be a mailing list instead, couldn't it?
hope the wording is 'good enough' for a
Translation smarty manual in spanish
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
26 matches
Mail list logo