問題タブ [lumen-routing]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
235 参照

php - 正規表現ルート パラメーターを使用した Lumen の route() 関数が誤った URL を返す

Lumen マイクロ フレームワークでは、日付をパラメーターとして使用して単純なルートを作成しました (例: /2018-02-31)。

$from を返すと、日付は 2018-02-31 として返されます。

しかし、route()関数で自分のルートに戻りたい場合は、/2018-02-31(?:-\d{1,2}){2}}を返します。

[0-9]{4}-[0-9]{2}-[0-9]{2}のような日付の他の正規表現を試しましたが、うまくいきません。