775 snippets from 1604 members, and growing!
|
login
|
join
about
bytebin
members
tags
snippets
join
Snippets
Submit a Snippet
Search Snippets
New Snippets
Top Snippets
Top Tags
PHP
(138)
JavaScript
(125)
Java
(66)
VBSCRIPT
(58)
String
(44)
CSS
(31)
CSharp
(28)
File
(28)
HTML
(27)
mysql
(25)
C
(24)
VB.NET
(24)
python
(24)
CPlusPlus
(23)
groovy
(23)
New Snippets
Shell keepalive t...
Clean PHP Templat...
PHP/MySQL impleme...
Analyte - Easy to...
Easy SQLite inter...
Very lightweight ...
AutoComplete plug...
AutoComplete plug...
Connection Java -...
View PostgreSql
Venture Capital Jobs
New Members
KennethCC
me
jamesmcm
Can
Kelmi
ysg
dannymo2
chorny
wallie
Hackdemian
Top Members
dannyboy
sundaramkumar
mattrmiller
Pio
i_kenneth
ASmith
ctiggerf
sehrgut
bertheymans
SCoon
Home
/
Snippets
/
Youtube xml reader
/
Comments
Youtube xml reader
Snippet Menu
Revisions
Comments
Related Snippets
Add to Favorites
Email Snippet
Download Snippet
Print Snippet
Blog Snippet
snippet
|
revisions
|
comments
|
related
|
Add to Favorites
|
email
download
|
print
|
blog it
New Comment
Simplicity
Fri. Dec. 29th, 2006 1:18 PM
Nico
An easier way to get the video ID.
preg_match
(
'/v(=|
\/
)([
\w
\-
]+)/'
,
$frm_ytstring
,
$gotit
)
;
$gotit
=
$gotit
[
2
]
;
All in all, you should learn how to use regular expressions. This could simplify the rest of the code a lot.
Reply
Hm
Wed. Jan. 3rd, 2007 6:43 AM
Nico
No, it doesn't need to end with &. It's optional. My code gets the video ID, no matter what's behind it.
On a sidenote, you could also use
parse_str()
to get the ID.
Reply
Not Really
Sat. Dec. 30th, 2006 7:06 AM
strandedfisherman
Because i needed it starting with "v=" and ending at "&"
Reply
New Comment
preg_match('/v(=|\/)([\w\-]+)/', $frm_ytstring, $gotit);
$gotit = $gotit[2];
On a sidenote, you could also use parse_str() to get the ID.