Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,945 questions

51,887 answers

573 users

How to get a substring between two strings in PHP

1 Answer

0 votes
function substring_between_two_strings($s, $start, $end) {
    $s = ' ' . $s;
    $startpos = strpos($s, $start);
    if ($startpos == 0) return '';
    $startpos += strlen($start);
    $len = strpos($s, $end, $startpos) - $startpos;
     
    return trim(substr($s, $startpos, $len));
}

$s = 'PHP is a general-purpose scripting language especially suited to web development.';
 
$subs = substring_between_two_strings($s, 'especially', 'development');
 
echo $subs; 
 
 
 
/*
run:
 
suited to web
 
*/

 



answered Dec 20, 2020 by avibootz
edited Dec 20, 2020 by avibootz
...