at path:
ROOT
/
wp-content
/
plugins
/
elementor
/
core
/
utils
/
str.php
run:
R
W
Run
api
DIR
2026-04-14 05:34:14
R
W
Run
import-export
DIR
2026-04-14 05:34:14
R
W
Run
promotions
DIR
2026-04-14 05:34:14
R
W
Run
svg
DIR
2026-04-14 05:34:14
R
W
Run
ab-test.php
2.45 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-config-provider.php
1.49 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-translation-loader.php
2.51 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
collection.php
10.13 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
exceptions.php
709 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
force-locale.php
3.55 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
hints.php
14.66 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
http.php
981 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
plugins-manager.php
2.84 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
static-collection.php
1.09 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
str.php
1001 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-element-iterator.php
766 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-import-export-utils.php
7.2 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-snapshot-processor.php
6.24 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
version.php
3.78 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
error_log
up
📄
str.php
Save
<?php namespace Elementor\Core\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Str { /** * Convert a non-latin URL to an IDN one. * Note: Max length is 64 chars. * * @param string $url - A URL to encode. * * @return string - IDN encoded URL ( e.g. `http://é.com` will be encoded to `http://xn--9ca.com` ). */ public static function encode_idn_url( $url ) { return preg_replace_callback( '/(https?:\/\/)(.+)/', function ( $matches ) { // WP >= 6.2-alpha if ( class_exists( '\WpOrg\Requests\IdnaEncoder' ) ) { $class = \WpOrg\Requests\IdnaEncoder::class; } else { $class = \Requests_IDNAEncoder::class; } return $matches[1] . $class::encode( $matches[2] ); }, $url ); } /** * Checks if a string ends with a given substring * * @param $haystack * @param $needle * @return bool */ public static function ends_with( $haystack, $needle ) { return substr( $haystack, -strlen( $needle ) ) === $needle; } }