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

  • Home
  • SEARCH
  • 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 to deploy a .net windows client application: There's
I know several ways of writing paged query in SQL Server 2005. But I
I am developing on a LAMP(erl) stack and know of several ways to store
I know there are several plugins that do asynchronous processing. Which one is the
I know it is easy to recommend several cross platform libraries. However, are there
I have a variable containing a string. The string can come in several ways:
I know there are several posts already concerning the difference between casts and the
There are several major unit tests frameworks, but as far as I know all
Currently I know several methods of connecting to a GUI remotely, or running GUI
I know of several functional languages - F#, Lisp and its dialects, R, and

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.