| bio | website | shiplu.mokadd.im |
|---|---|---|
| location | Dhaka, Bangladesh | |
| age | 30 | |
| visits | member for | 2 years, 11 months |
| seen | 7 hours ago | |
| stats | profile views | 3,254 |
Me, a learner, explorer.
Some of my answers.
- Best way to find differences between two large arrays in PHP
- Detect if cookies are enabled in PHP
- Can I open socket in PHP from a specific IP (if the machine has two IPs)?
- Performance of copying a file with fread/fwrite to USB
- How to extract relative URL from argument values from request string?
- Capture image with imagegrabscreen and Wamp
- Would this be enough to deter a robot?
- What is the PHP exec() return value?
- If domain A has an iframe of domain B, which has an iframe of domain A, can domain A access the cookies of domain B?
- PHP: check if a site is down
- How to reroute STDOUT, STDERR back to /dev/tty
- Can you use SELECT JOIN for questions and its tags?
- Splitting huge sql dump file in smallest chunks possible
|
Jan 29 |
revised |
What is better to use out of in_array() and || operator? deleted 1 characters in body |
|
Jan 29 |
comment |
What is better to use out of in_array() and || operator? If number of condition is too you can do it with language construct. No need to use in_array. If number of condition is high its better to use in_array(). writing every thing in one single line with lots of language construct does not make sense. At one end || should be used and on other end in_array() should be used. But in any case || solution will be faster. Prove it wrong if you can |
|
Jan 29 |
comment |
What is better to use out of in_array() and || operator? I showed 26 language construct to create an worst case. Nothing else. I already told in the answer if condition grows over time or its dynamic in_array() is convenient. To make a benchmark I just added 26th constructs. 2-3 edits ago it was only 4 language construct. |
|
Jan 29 |
comment |
how to instruct Sencha SDK tools to bundle other js files specified in app.json I am using Sencha Command v2.0.0 Beta 3. Its available on their web as recommended. sencha.com/products/sdk-tools/download |
|
Jan 29 |
comment |
javascript popup concat not working after submitting the form what HTML output you get? |
|
Jan 29 |
answered | PHP fwrite() function |
|
Jan 29 |
comment |
how to instruct Sencha SDK tools to bundle other js files specified in app.json I have tried it. But no luck. I still see its requesting 'mootools.js' and others over the network. Also the app.js file size does not increase at all. See my stripped down app.js and app.json |
|
Jan 29 |
revised |
How to use variable in regex edited tags |
|
Jan 29 |
comment |
How to use variable in regex Beat me in 1 second! |
|
Jan 29 |
comment |
sessions lost in php / linux centos I think you couldn't install it properly. Was there any installation docs? |
|
Jan 29 |
comment |
onload() in pop up window is not working in opera Why not you put the onload code on the view selected by /index controller? |
|
Jan 29 |
comment |
sessions lost in php / linux centos What your problem now? session working or not? |
|
Jan 29 |
answered | How to use variable in regex |
|
Jan 29 |
comment |
i want that the first two characters of my string should not be special characters @TedHopp sorry. Actually it does not match _ thats the problem. |
|
Jan 29 |
revised |
i want that the first two characters of my string should not be special characters added 214 characters in body |
|
Jan 29 |
comment |
i want that the first two characters of my string should not be special characters @jurgemaister \W matches _ which is a special character. See my answer for proper expression |
|
Jan 29 |
comment |
i want that the first two characters of my string should not be special characters What about ? character? it'll fail |
|
Jan 29 |
answered | i want that the first two characters of my string should not be special characters |
|
Jan 29 |
revised |
What is better to use out of in_array() and || operator? added 36 characters in body |
|
Jan 29 |
revised |
What is better to use out of in_array() and || operator? added 101 characters in body |