Cant display an image via PHP in wordpress

I think that you need echo the image, try this:

<php
$image = wp_get_attachment_image_src( $post_thumbnail_id ); 
//echo( $image[0] );
?>
<img src="https://wordpress.stackexchange.com/questions/319794/<?php echo $image[0]; ?>" alt="">