For ascending order :
bubblesortarray( $array_name );
For descending order :
bubblesortarray( $array_name, false );
Download Here:
Download
For ascending order :
bubblesortarray( $array_name );
For descending order :
bubblesortarray( $array_name, false );
Download Here:
Download
Filed under Vimmaniac
Install Pear Package Mail_Mbox
Type in the terminal-
pear install Mail_Mbox
Mailbox Accessing Code:
<?php
require_once( 'Mail/Mbox.php' );
$file = "file_path_to/filename";
$mailbox = new Mail_Mbox( $file );
$mailbox->open();
for( $mail = 0;$mail < $mailbox->size();$mail++ )
{
echo $mailbox->get($mail);}
?>
Filed under Vimmaniac
Usages:
$removeFile = new DuplicateFileRemover($dir);
# $dir = "/home/username/Videos"
$removeFile->remover(); #remove duplicate files if permitted
$md5sum_value = $removeFile->getMd5str();
#Provides md5 values of all the files
Download Location: Download
Filed under Vimmaniac