将 PHP 字符串函数转换为 Javascript / jQuery

发布于 2024-12-08 00:30:34 字数 283 浏览 0 评论 0原文

这是我试图将 PHP 代码转换为 Javascript/jQuery 的代码。有什么想法吗?

$root_folder = 'es';
$url = "http://domainNamehere.com/event/test-event-in-the-future/";

$p = strpos($url, '/', 8);
$url_new = sprintf('%s/%s/%s', substr($url, 0, $p), $root_folder, substr($url, $p+1));

This is the PHP code I'm trying to translate into Javascript / jQuery. Any ideas?

$root_folder = 'es';
$url = "http://domainNamehere.com/event/test-event-in-the-future/";

$p = strpos($url, '/', 8);
$url_new = sprintf('%s/%s/%s', substr($url, 0, $p), $root_folder, substr($url, $p+1));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

佞臣 2024-12-15 00:30:34
var root_folder = "es",
    url = "http://domainNamehere.com/event/test-event-in-the-future/",
    url_new = "",
    path_finder = /^(((http)s?:)?\/\/[^\/]+\/)/i;

url_new = url.replace(path_finder, "$1" + root_folder + "/");
var root_folder = "es",
    url = "http://domainNamehere.com/event/test-event-in-the-future/",
    url_new = "",
    path_finder = /^(((http)s?:)?\/\/[^\/]+\/)/i;

url_new = url.replace(path_finder, "$1" + root_folder + "/");
雾里花 2024-12-15 00:30:34
strpos() ~ .indexOf()
substr() ~ .substring()
sprintf() ~ +
strpos() ~ .indexOf()
substr() ~ .substring()
sprintf() ~ +
烟凡古楼 2024-12-15 00:30:34

PHP.js 提供了许多常见 PHP 函数到 JavaScript 的端口。

PHP.js offers ports of many common PHP functions to JavaScript.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文