Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6626101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:51:14+00:00 2026-05-25T21:51:14+00:00

I know of several ways to get a character off a string given the

  • 0

I know of several ways to get a character off a string given the index.

<?php
$string = 'abcd';
echo $string[2];
echo $string{2};
echo substr($string, 2, 1);
?>

I don’t know if there are any more ways, if you know of any please don’t hesitate to add it. The question is, if I were to choose and repeat a method above a couple of million times, possibly using mt_rand to get the index value, which method would be the most efficient in terms of least memory consumption and fastest speed?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:51:15+00:00Added an answer on May 25, 2026 at 9:51 pm

    To arrive at an answer, you’ll need to setup a benchmark test rig. Compare all methods over several (hundreds of thousands or millions) iterations on an idle box. Try the built-in microtime function to measure the difference between start and finish. That’s your elapsed time.

    The test should take you all of 2 minutes to write.

    To save you some effort, I wrote a test. My own test shows that the functional solution (substr) is MUCH slower (expected). The idiomatic PHP ({}) solution is as fast as the index method. They are interchangeable. The ([]) is preferred, as this is the direction where PHP is going regarding string offsets.

    <?php
    $string = 'abcd';
    $limit = 1000000;
    
    $r = array(); // results
    
    // PHP idiomatic string index method
    $s = microtime(true);
    for ($i = 0; $i < $limit; ++$i) {
        $c = $string{2};
    }
    $r[] = microtime(true) - $s; 
    echo "\n";
    
    // PHP functional solution
    $s = microtime(true);
    for ($i = 0; $i < $limit; ++$i) {
        $c = substr($string, 2, 1); 
    }
    $r[] = microtime(true) - $s; 
    echo "\n";
    
    // index method
    $s = microtime(true);
    for ($i = 0; $i < $limit; ++$i) {
        $c = $string[2];
    }
    $r[] = microtime(true) - $s; 
    echo "\n";
    
    
    // RESULTS
    foreach ($r as $i => $v) {
        echo "RESULT ($i): $v \n";
    }
    ?>
    

    Results:
    RESULT (PHP4 & 5 idiomatic braces syntax): 0.19106006622314
    RESULT (string slice function): 0.50699090957642
    RESULT (*index syntax, the future as the braces are being deprecated *): 0.19102001190186

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there are several ways in MacOS to open Safari with a given
All right, do not get angry now, I know there are several questions about
I know there are several ways of creating a free trials. My algorithm that
I know this has been asked different ways several times, but I'm just not
I know there are several threads asking similar questions - but I havent found
I know there are several questions about satellite Assembly's out there, but I still
I know there are several libraries to connect to XMPP servers, but is there
I know there are several threads and posts regarding this issue in the internet
i know there are several questions about regex recursion in .net. I can write
I have read it on the official website that there are several ways in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.