CakePHP
Downloads
Releases
Pear channel
Documentation
API
2.1
|
2.0
|
1.3
|
1.2
|
1.1
Book
2.x
|
1.3
|
1.2
|
1.1
Community
Issues
Bakery
Plugins & packages
Contributors
Google Groups
Logo
Q & A
TV (Screencasts)
Services
Certification
Consultation
Support
Training
Bin
New
Saved
1
2
3
4
5
6
7
8
9
10
Router
::
connect
(
'/pastes/new/*'
,
array
(
'controller'
=>
'pastes'
,
'action'
=>
'add'
)
)
;
Router
::
connect
(
'/'
,
array
(
'controller'
=>
'pastes'
,
'action'
=>
'add'
)
)
;
Router
::
connect
(
'/pastes'
,
array
(
'controller'
=>
'pastes'
,
'action'
=>
'index'
)
)
;
Router
::
connect
(
'/pastes/view/:slug'
,
array
(
'controller'
=>
'pastes'
,
'action'
=>
'view'
)
)
;
Router
::
connect
(
'/pastes/author/:author'
,
array
(
'controller'
=>
'pastes'
,
'action'
=>
'index'
)
)
;
Router
::
connect
(
'/pastes/:year/:month/:day'
,
array
(
'controller'
=>
'pastes'
,
'action'
=>
'index'
,
'month'
=>
null
,
'day'
=>
null
)
,
array
(
'year'
=>
'[12][0-9]{3}'
,
'month'
=>
'(0[1-9]|1[012])'
,
'day'
=>
'(0[1-9]|[12][0-9]|3[01])'
)
)
;
Versions
primeminister
on 10/8/08
Routing with year, month, day
saved
Language
php
Pasted on
on 10/8/08
By
primeminister
Note
Routing with year, month, day
Tags
day, month, routers and year
View original
Modify this Paste
Router::connect('/pastes/new/*', array('controller' => 'pastes', 'action' => 'add')); Router::connect('/', array('controller' => 'pastes', 'action' => 'add')); Router::connect('/pastes', array('controller' => 'pastes', 'action' => 'index')); Router::connect('/pastes/view/:slug', array('controller' => 'pastes', 'action' => 'view')); Router::connect('/pastes/author/:author', array('controller' => 'pastes', 'action' => 'index')); Router::connect('/pastes/:year/:month/:day', array('controller' => 'pastes', 'action' => 'index', 'month' => null, 'day' => null), array('year' => '[12][0-9]{3}', 'month' => '(0[1-9]|1[012])', 'day' => '(0[1-9]|[12][0-9]|3[01])') );
Nick
Language
4cs
6502acme
6502kickass
6502tasm
68000devpac
abap
actionscript
actionscript3
ada
algol68
apache
applescript
apt_sources
asm
asp
autoconf
autohotkey
autoit
avisynth
awk
bascomavr
bash
basic4gl
bf
bibtex
blitzbasic
bnf
boo
c
c_loadrunner
c_mac
caddcl
cadlisp
cfdg
cfm
chaiscript
cil
clojure
cmake
cobol
coffeescript
cpp-qt
cpp
csharp
css
cuesheet
d
dcs
delphi
diff
div
dos
dot
e
ecmascript
eiffel
email
epc
erlang
euphoria
f1
falcon
fo
fortran
freebasic
fsharp
gambas
gdb
genero
genie
gettext
glsl
gml
gnuplot
go
groovy
gwbasic
haskell
hicest
hq9plus
html4strict
html5
icon
idl
ini
inno
intercal
io
j
java
java5
javascript
jquery
kixtart
klonec
klonecpp
latex
lb
lisp
llvm
locobasic
logtalk
lolcode
lotusformulas
lotusscript
lscript
lsl2
lua
m68k
magiksf
make
mapbasic
matlab
mirc
mmix
modula2
modula3
mpasm
mxml
mysql
newlisp
nsis
oberon2
objc
objeck
ocaml-brief
ocaml
oobas
oracle11
oracle8
oxygene
oz
pascal
pcre
per
perl
perl6
pf
php-brief
php
pic16
pike
pixelbender
pli
plsql
postgresql
povray
powerbuilder
powershell
proftpd
progress
prolog
properties
providex
purebasic
pycon
python
q
qbasic
rails
rebol
reg
robots
rpmspec
rsplus
ruby
sas
scala
scheme
scilab
sdlbasic
smalltalk
smarty
sql
systemverilog
tcl
teraterm
text
thinbasic
tsql
typoscript
unicon
uscript
vala
vb
vbnet
verilog
vhdl
vim
visualfoxpro
visualprolog
whitespace
whois
winbatch
xbasic
xml
xorg_conf
xpp
yaml
z80
zxbasic
Note
Routing with year, month, day