byobu-enable-prompt
Disable prompt
byobu-disable-prompt
1 2 3 4 5 6 7 | sub handler { my ( $i_request_rec ) = @_ ; @{ $i_request_rec ->pnotes}{ 'err_txt' , 'err_content_type' } = ( 'appid=45465&status=-42' , 'application/x-www-form-urlencoded; charset=utf-8' ); $i_request_rec ->custom_response(Apache2::Const::SERVER_ERROR, '/error_vas/' ); return Apache2::Const::SERVER_ERROR; } |
1 2 3 4 | <Location /error_vas/> SetHandler perl-script PerlResponseHandler Toto::ErrorVas </Location> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | package Toto::ErrorVas; use strict; use warnings; use Apache2::Const -compile => qw(:common : log ); sub handler { my ( $i_request_rec ) = @_ ; return Apache2::Const::NOT_FOUND unless $i_request_rec ->prev; $i_request_rec ->content_type( $i_request_rec ->prev->pnotes->{err_content_type}); $i_request_rec -> print ( $i_request_rec ->prev->pnotes->{err_txt}); return Apache2::Const::OK; } |
perl -MData::Dumper -e '@{$h}{qw/toto tata/} = (34, 56); print Dumper $h;'
$VAR1 = {
'tata' => 56,
'toto' => 34
};
1 2 3 4 5 6 7 8 9 10 11 | local @LWP ::Protocol::http::EXTRA_SOCK_OPTS = ( PeerAddr => $my_hostname , MultiHomed => 1, ); my $ua = LWP::UserAgent->new; Content_Type => 'application/x-www-form-urlencoded; charset=utf-8' , Content => { param1 => 'value1' , param2 => 'value2' , }); |
$a = '.63';
echo (float) $a;
source: http://stackoverflow.com/questions/4284571/php-oci-oracle-and-default-number-format
1 | REGEXP_REPLACE(TO_CHAR(x), '^\.' , '0.' ) |
1 | REGEXP_REPLACE(TO_CHAR(x), '(-?)^\.' , '\10.' ) |
1 2 3 4 | < td > < input type = "checkbox" name = "cb[]" /> < input type = "checkbox" name = "cb[]" /> </ td > |
1 2 3 4 5 6 | < td > < input type = "hidden" name = "cb[0]" value = "" /> < input type = "checkbox" name = "cb[0]" /> < input type = "hidden" name = "cb[1]" value = "" /> < input type = "checkbox" name = "cb[1]" /> </ td > |
1 2 3 4 | < td > < input type = "checkbox" name = "cb[0]" /> < input type = "checkbox" name = "cb[1]" /> </ td > |
$post_array = $_POST['cb'];
$defaults = array_fill(0, 2, '0');
$post_array = $post_array + $defaults;