1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Correzione nomi di alcune funzioni

Correzione delle funzioni
- starts_with in string_starts_with
- ends_with in string_ends_with
- str_contains in string_contains
- str_to_lower in string_lowercase
- str_to_upper in string_uppercase
per maggiore coerenza e per evitare problemi con PHP 8.
This commit is contained in:
Dasc3er
2020-10-29 16:48:37 +01:00
parent 5fe1a5cf59
commit fdd130bf1b
44 changed files with 82 additions and 82 deletions

View File

@@ -308,7 +308,7 @@ function redirectOperation($id_module, $id_record)
// Scelta del redirect dopo un submit
if (!empty($backto)) {
$hash = filter('hash');
$hash = !starts_with($hash, '#') ? '#'.$hash : $hash;
$hash = !string_starts_with($hash, '#') ? '#'.$hash : $hash;
$hash = $hash == '#tab_0' ? '' : $hash;
if ($backto == 'record-edit') {

View File

@@ -98,7 +98,7 @@ if (!function_exists('array_deep_clean')) {
}
}
if (!function_exists('starts_with')) {
if (!function_exists('string_starts_with')) {
/**
* Check if a string starts with the given string.
*
@@ -107,14 +107,14 @@ if (!function_exists('starts_with')) {
*
* @return bool
*/
function starts_with($string, $starts_with)
function string_starts_with($string, $starts_with)
{
//return strpos($string, $starts_with) === 0;
//return strpos($string, $string_starts_with) === 0;
return S::create($string)->startsWith($starts_with);
}
}
if (!function_exists('ends_with')) {
if (!function_exists('string_ends_with')) {
/**
* Check if a string ends with the given string.
*
@@ -123,14 +123,14 @@ if (!function_exists('ends_with')) {
*
* @return bool
*/
function ends_with($string, $ends_with)
function string_ends_with($string, $ends_with)
{
//return substr($string, -strlen($ends_with)) === $ends_with;
//return substr($string, -strlen($string_ends_with)) === $string_ends_with;
return S::create($string)->endsWith($ends_with);
}
}
if (!function_exists('str_contains')) {
if (!function_exists('string_contains')) {
/**
* Check if a string contains the given string.
*
@@ -139,14 +139,14 @@ if (!function_exists('str_contains')) {
*
* @return bool
*/
function str_contains($string, $contains)
function string_contains($string, $contains)
{
//return strpos($string, $contains) !== false;
return S::create($string)->contains($contains);
}
}
if (!function_exists('str_to_lower')) {
if (!function_exists('string_lowercase')) {
/**
* Converts a string in the lower-case version.
*
@@ -154,13 +154,13 @@ if (!function_exists('str_to_lower')) {
*
* @return string
*/
function str_to_lower($string)
function string_lowercase($string)
{
return S::create($string)->toLowerCase()->__toString();
}
}
if (!function_exists('str_to_upper')) {
if (!function_exists('string_uppercase')) {
/**
* Converts a string in the upper-case version.
*
@@ -168,7 +168,7 @@ if (!function_exists('str_to_upper')) {
*
* @return string
*/
function str_to_upper($string)
function string_uppercase($string)
{
return S::create($string)->toUpperCase()->__toString();
}