This commit is contained in:
2023-11-26 18:56:40 +08:00
parent be14f5fdb1
commit 64431e7a73
144 changed files with 497072 additions and 3730 deletions

View File

@@ -9,6 +9,155 @@ function epoch_now_timestamp()
}
}
if (! function_exists('markdown_to_plaintext')) {
function markdown_to_plaintext($markdown)
{
// Headers
$markdown = preg_replace('/^#.*$/m', '', $markdown);
// Links and images
$markdown = preg_replace('/\[(.*?)\]\(.*?\)/', '$1', $markdown);
// Bold and italic
$markdown = str_replace(['**', '__', '*', '_'], '', $markdown);
// Ordered and unordered lists
$markdown = preg_replace('/^[-\*].*$/m', '', $markdown);
// Horizontal line
$markdown = str_replace(['---', '***', '- - -', '* * *'], '', $markdown);
// Inline code and code blocks
$markdown = preg_replace('/`.*?`/', '', $markdown);
$markdown = preg_replace('/```[\s\S]*?```/', '', $markdown);
// Blockquotes
$markdown = preg_replace('/^>.*$/m', '', $markdown);
// Remove multiple spaces, leading and trailing spaces
$plaintext = trim(preg_replace('/\s+/', ' ', $markdown));
return $plaintext;
}
}
if (! function_exists('round_to_nearest_base')) {
function round_to_nearest_base($number, $postfix = '+', $base = null)
{
// If $base is not provided, determine the base dynamically
if ($base === null) {
$length = strlen((string) $number);
if ($length > 1) {
$base = pow(10, $length - 2);
} else {
$base = 1;
}
}
$roundedNumber = floor($number / $base) * $base;
return $roundedNumber.$postfix;
}
}
if (! function_exists('remove_query_parameters')) {
function remove_query_parameters($url)
{
// Trim the URL to remove whitespace, newline characters, and trailing slashes
$trimmedUrl = rtrim(trim($url), '/');
// Parse the trimmed URL
$parsedUrl = parse_url($trimmedUrl);
// Rebuild the URL without the query string
$rebuiltUrl = $parsedUrl['scheme'].'://'.$parsedUrl['host'];
if (isset($parsedUrl['path']) && $parsedUrl['path'] !== '/') {
$rebuiltUrl .= $parsedUrl['path'];
}
return $rebuiltUrl;
}
}
if (! function_exists('remove_referral_parameters')) {
function remove_referral_parameters($url)
{
$referralParameters = [
'aff', 'ref', 'via',
'utm_source', 'utm_medium', 'utm_campaign',
'utm_content', 'utm_term', 'partner',
'click_id', 'affiliate', 'source',
'referral', 'tracker', 'tracking_id',
'promo', 'coupon', 'discount',
'campaign', 'ad', 'ad_id',
// Add more parameters as needed
];
// Parse the URL
$parsedUrl = parse_url($url);
if (! isset($parsedUrl['query'])) {
return $url; // No query string present, return original URL
}
// Parse the query string
parse_str($parsedUrl['query'], $queryParams);
// Remove referral parameters
foreach ($referralParameters as $param) {
unset($queryParams[$param]);
}
// Rebuild query string
$queryString = http_build_query($queryParams);
// Rebuild the URL
$rebuiltUrl = $parsedUrl['scheme'].'://'.$parsedUrl['host'];
if (isset($parsedUrl['path'])) {
$rebuiltUrl .= $parsedUrl['path'];
}
if (! empty($queryString)) {
$rebuiltUrl .= '?'.$queryString;
}
return $rebuiltUrl;
}
}
if (! function_exists('get_domain_from_url')) {
function get_domain_from_url($url)
{
$parse = parse_url($url);
// Check if 'host' key exists in the parsed URL array
if (! isset($parse['host'])) {
return null; // or you can throw an exception or handle this case as per your requirement
}
$host = $parse['host'];
// Check if the domain starts with 'www.' and remove it
if (substr($host, 0, 4) === 'www.') {
$host = substr($host, 4);
}
return $host;
}
}
if (! function_exists('get_tld_from_url')) {
function get_tld_from_url($url)
{
// Parse the URL and return its components
$parsedUrl = parse_url($url);
// Check if the 'host' part is set
if (isset($parsedUrl['host'])) {
// Split the host by dots
$hostParts = explode('.', $parsedUrl['host']);
// Return the last part which should be the TLD
return end($hostParts);
}
// Return false if the URL doesn't have a host component
return false;
}
}
if (! function_exists('str_first_sentence')) {
function str_first_sentence($str)
{