php-general Digest 29 Apr 2013 19:38:35 -0000 Issue 8211

Topics (messages 320990 through 320994):

Re: PHP compiler - HipHop performance
        320990 by: Daniel Fenn
        320991 by: marco.behnke.biz

Re: IE 10 bug?
        320992 by: Matijn Woudt

Re: IE 10 bug? Ignore this post - definitely OT
        320993 by: Jim Giner

Re: [ask] convert unknown Korean's string to readable string
        320994 by: Morning Star

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
On Fri, Apr 26, 2013 at 1:56 PM, Norah Jones <nh.jone...@gmail.com> wrote:

> Hi,
>
> I have downloaded HipHop for my website, I am going through various web
> links which are suggesting that performance will improve 3-6 times. However
> I don't know the Stability of the HipHop.
>
> Please provide your inputs so that I can decide to use HipHop.
>
> Thanks,
> Norah Jones
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


I looked into HipHop once, and I decided not to use it, I felt that there
are other ways of improving performance. Having said that, it really
depends on what your running IE wordpress, phpbb, mybb etc.

I rather install some cache plugin for wordpress and install something like
xcache but that just me though.

--- End Message ---
--- Begin Message ---
> Norah Jones <nh.jone...@gmail.com> hat am 26. April 2013 um 05:56 geschrieben:
> Hi,
>
> I have downloaded HipHop for my website, I am going through various web links
> which are suggesting that performance will improve 3-6 times. However I don't
> know the Stability of the HipHop.
>
> Please provide your inputs so that I can decide to use HipHop.

When I tried it I was amazed by the performance impact.

Just create yourself a PHP file that does 100.000 calculations and compare the
php execution vs. the native compiled one. That is awesome!

The drawback is, that hiphop does not support every php extension and that it
really takes some time to compile a really big framework.
If you have some code that you want to speed up and it can seperated from the
rest, then create a smaller module out of it and compile that.

Or think about creating own PECL extensions.

>
> Thanks,
> Norah Jones
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--
Marco Behnke
Dipl. Informatiker (FH), SAE Audio Engineer Diploma
Zend Certified Engineer PHP 5.3

Tel.: 0174 / 9722336
e-Mail: ma...@behnke.biz

Softwaretechnik Behnke
Heinrich-Heine-Str. 7D
21218 Seevetal

http://www.behnke.biz

--- End Message ---
--- Begin Message ---
On Wed, Apr 24, 2013 at 6:01 PM, Jim Giner <jim.gi...@albanyhandball.com>wrote:

> I know - it sounds OT, but listen.
>
> I have a form that has a "sign in " button which attempts to sent the user
> to a form in a password-protected folder.  In order to get there the user
> must provide credentials.  Once there the receiving script simply sets a
> session var and does a header() back to the calling script, where because
> of the session var that was set, a new group of buttons are visible for the
> user to click.
>
> Well, M$ did an update last week on me and now IE10 is acting differently
> in the above scenario.  Instead of my screen showing me back on my original
> menu screen it shows some other application window, probably the next one
> in z-order sequence.(?)  It looks like my app crashed or something since my
> IE is now behind the other appls sometimes.
>
> Has anyone else seen this, and if so, how does one counter it?
>
> Blame Microsoft for building a crappy product?
I guess IE has brought us web developers headaches since the beginning.

--- End Message ---
--- Begin Message ---
On 4/24/2013 2:01 PM, Jim Giner wrote:
I know - it sounds OT, but listen.

I have a form that has a "sign in " button which attempts to sent the
user to a form in a password-protected folder.  In order to get there
the user must provide credentials.  Once there the receiving script
simply sets a session var and does a header() back to the calling
script, where because of the session var that was set, a new group of
buttons are visible for the user to click.

Well, M$ did an update last week on me and now IE10 is acting
differently in the above scenario.  Instead of my screen showing me back
on my original menu screen it shows some other application window,
probably the next one in z-order sequence.(?)  It looks like my app
crashed or something since my IE is now behind the other appls sometimes.

Has anyone else seen this, and if so, how does one counter it?
Well - this is definitely OT. Just realized that when I log into my ISP cpanel, the same thing happens. The "Windows Security" signin dialog appears, gets filled, click on Ok and bang - I'm looking at another appl window instead of the IE window that I just logged in to.

We can all ignore this post.

--- End Message ---
--- Begin Message ---
Thanks, Richard. It works in xterm, but it doesn't work in KDE konsole.
i don't know how to figure it out. help me

Best regards,

Marco

On Mon, Apr 22, 2013 at 9:43 AM, Richard Quadling <rquadl...@gmail.com> wrote:
>
> On 18 April 2013 08:06, Morning Star <morning.star.c...@gmail.com> wrote:
>>
>> $string = \uc548\ub155\ud558\uc138\uc694
>
>
> <?php
> $string1 = '\uc548\ub155\ud558\uc138\uc694';
> $string2 = preg_replace('/\\\u([0-9a-f]+)/', '&#x$1;', $string1);
> $string3 = html_entity_decode($string2, ENT_COMPAT, 'UTF-8');
> echo
>     'Original : ', $string1, PHP_EOL,
>     'Entities : ', $string2, PHP_EOL,
>     'Decoded  : ', $string3, PHP_EOL,
>     PHP_EOL;
> ?>
>
> outputs (at least for me) ...
>
> 안녕하세요
>
> Based upon
> http://stackoverflow.com/questions/7274183/php-convert-unicode-to-character.
>
>
> Hope this helps.
>
> --
> Richard Quadling
> Twitter : @RQuadling
>

--- End Message ---

Reply via email to