File Editor
Directories:
.. (Back)
Files:
Array.php
Body_Classes.php
Callback.php
Collection.php
Collection_Interface.php
Collection_Trait.php
Color.php
Compatibility_Classes.php
Coordinates_Provider.php
Date_I18n.php
Date_I18n_Immutable.php
Element_Attributes.php
Element_Classes.php
Global_ID.php
JSON.php
Lazy_Collection.php
Lazy_Events.php
Lazy_String.php
Paths.php
Plugins.php
Post_Collection.php
Post_Root_Pool.php
Post_Thumbnail.php
Query.php
Strings.php
Taxonomy.php
Theme_Compatibility.php
Create New File
Create
Edit File: Strings.php
<?php /** * String Utilities * * @since 4.12.1 * @package Tribe\Utils */ namespace Tribe\Utils; /** * Class Strings * * @since 4.12.1 * * @package Tribe\Utils */ class Strings { /** * Replace the first occurrence of a given value in the string. * * @since 4.12.1 * * @param string $search The string to search for and replace. * @param string $replace The replacement string. * @param string $subject The string to do the search and replace from. * * @return string The string with the first occurrence of a given value replaced. */ public static function replace_first( $search, $replace, $subject ) { if ( '' === $search ) { return $subject; } $position = strpos( $subject, $search ); if ( $position !== false ) { return substr_replace( $subject, $replace, $position, strlen( $search ) ); } return $subject; } /** * Replace the last occurrence of a given value in the string. * * @since 4.12.1 * * @param string $search The string to search for and replace. * @param string $replace The replacement string. * @param string $subject The string to do the search and replace from. * * @return string The string with the last occurrence of a given value replaced. */ public static function replace_last( $search, $replace, $subject ) { $position = strrpos( $subject, $search ); if ( $position !== false ) { return substr_replace( $subject, $replace, $position, strlen( $search ) ); } return $subject; } }
Save Changes
Rename File
Rename