Server IP : 213.35.126.208 / Your IP : 216.73.216.239 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux ust-wp1-prod 5.15.0-308.179.6.el8uek.x86_64 #2 SMP Wed Apr 23 10:46:57 PDT 2025 x86_64 User : tomasFtp ( 1007) PHP Version : 8.4.8 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lawjournal/public_html/wp-content/plugins/wordpress-seo/src/helpers/ |
Upload File : |
<?php namespace Yoast\WP\SEO\Helpers; /** * A helper object for string operations. */ class String_Helper { /** * Strips all HTML tags including script and style. * * @param string $text The text to strip the tags from. * * @return string The processed string. */ public function strip_all_tags( $text ) { return \wp_strip_all_tags( $text ); } /** * Standardize whitespace in a string. * * Replace line breaks, carriage returns, tabs with a space, then remove double spaces. * * @param string $text Text input to standardize. * * @return string */ public function standardize_whitespace( $text ) { return \trim( \str_replace( ' ', ' ', \str_replace( [ "\t", "\n", "\r", "\f" ], ' ', $text ) ) ); } /** * First strip out registered and enclosing shortcodes using native WordPress strip_shortcodes function. * Then strip out the shortcodes with a filthy regex, because people don't properly register their shortcodes. * * @param string $text Input string that might contain shortcodes. * * @return string String without shortcodes. */ public function strip_shortcode( $text ) { return \preg_replace( '`\[[^\]]+\]`s', '', \strip_shortcodes( $text ) ); } }