forked from wallabag/wallabag
add pdf and mobi libraries
This commit is contained in:
37
inc/3rdparty/libraries/send2kindle/utils.php
vendored
Normal file
37
inc/3rdparty/libraries/send2kindle/utils.php
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Utils for news2kindle
|
||||
* @author jwest <jwest@jwest.pl>
|
||||
*/
|
||||
class Utils
|
||||
{
|
||||
/**
|
||||
* URL encode
|
||||
* @param string $url
|
||||
* @return string $ar_url
|
||||
*/
|
||||
public static function urlencode( $url )
|
||||
{
|
||||
$ar_url = explode( '/', $url );
|
||||
|
||||
foreach ( $ar_url as $key => $val )
|
||||
{
|
||||
$ar_url[ $key ] = urlencode( $val );
|
||||
}
|
||||
|
||||
return implode('/', $ar_url );
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare ID for google rss article
|
||||
* @param string $id
|
||||
* @return string
|
||||
*/
|
||||
public static function prepare_id($id)
|
||||
{
|
||||
$char_in = array('/', '.', ',', ':');
|
||||
$id = str_replace($char_in, '-', $id);
|
||||
|
||||
return $id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user