<?xml version="1.0" encoding="ISO-8859-1"?>
<slide fontsize="6em">
	<title>strrpos() and strripos()</title>

	<blurb fontsize="4em">
	strr(i)pos() now searches the full needle inside the haystack, and not
	only the first character of it.
	</blurb>

<break lines="2"/>
	<example fontsize="1.3em"><![CDATA[<?php
	$haystack = "There are now ten more countries in Europe";
	$needle   = "The Netherlands";

	$pos = strrpos($haystack, $needle);
	var_dump($pos);
?>]]></example>

<break lines="2"/>
	<blurb fontsize="2.5em">PHP 4:</blurb>
	<example fontsize="1em"><![CDATA[int(0)]]></example>

<break lines="2"/>
	<blurb fontsize="2.5em">PHP 5:</blurb>
	<example fontsize="1em"><![CDATA[bool(false)]]></example>
</slide>
