Jump to content

PHP Manual Example


HuggieBear

Recommended Posts

According to the PHP manual, the following code should produce "Matched".

[code]
<?php

$string = "sense and sensibility";

if (preg_match("/(sens|respons)e and \1ibility/", $string)){
echo "Matched";
}
else {
echo "No match made";
}
?>
[/code]

But it doesn't.  It tells me, No match made.  Anyone tell me if I'm missing something here?  Have I overlooked something obvious.  Can I only use back referencing in certain versions of PHP?

Regards
Huggie
Link to comment
https://forums.phpfreaks.com/topic/20794-php-manual-example/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.